mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 17:43:52 +00:00
* rebase\tidy up to address commends * I blame git for this one * last typo * spaces * formating fixes I think? * Repository fixes * Cleanup --------- Co-authored-by: Akkadius <akkadius1@gmail.com>
14 lines
373 B
C++
14 lines
373 B
C++
#ifndef EQEMU_CHARACTER_PET_NAME_REPOSITORY_H
|
|
#define EQEMU_CHARACTER_PET_NAME_REPOSITORY_H
|
|
|
|
#include "../database.h"
|
|
#include "../strings.h"
|
|
#include "base/base_character_pet_name_repository.h"
|
|
|
|
class CharacterPetNameRepository: public BaseCharacterPetNameRepository {
|
|
public:
|
|
// Custom extended repository methods here
|
|
};
|
|
|
|
#endif //EQEMU_CHARACTER_PET_NAME_REPOSITORY_H
|