#ifndef PETS_H #define PETS_H class Mob; struct NPCType; class Pet : public NPC { public: Pet(NPCType *type_data, Mob *owner, PetType type, uint16 spell_id, int16 power); virtual bool CheckSpellLevelRestriction(Mob *caster, uint16 spell_id); }; #endif