Alex King a4e47d9180
[Pets] Add Pet Constants and Methods (#4987)
* [Pets] Add Pet Constants and Methods

* Remove GetID

* GetPetTypeName()

* Cleanup
2025-08-17 01:00:31 -04:00

16 lines
265 B
C++

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