2017-11-04 01:27:41 -04:00

16 lines
250 B
C++

#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(uint16 spell_id);
};
#endif