mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* [Rule] Add rule for NPC Level Based Buff Restrictions. * Erroneous whitespace * Change prefix on log message * Added log message when GM casts
16 lines
263 B
C++
16 lines
263 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(Mob *caster, uint16 spell_id);
|
|
|
|
};
|
|
|
|
#endif
|
|
|