mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 21:21:30 +00:00
11 lines
234 B
C++
11 lines
234 B
C++
#pragma once
|
|
|
|
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);
|
|
};
|