pets.cpp & .h include header cleanup

This commit is contained in:
Akkadius 2014-12-15 18:14:39 -06:00
parent 631d8cb015
commit 250d9d1fb5
2 changed files with 24 additions and 23 deletions

View File

@ -17,7 +17,6 @@
*/ */
#include "../common/debug.h" #include "../common/debug.h"
#include "../common/misc_functions.h"
#include "../common/spdat.h" #include "../common/spdat.h"
#include "../common/string_util.h" #include "../common/string_util.h"
#include "../common/types.h" #include "../common/types.h"
@ -27,7 +26,6 @@
#include "mob.h" #include "mob.h"
#include "pets.h" #include "pets.h"
#include "worldserver.h"
#include "zonedb.h" #include "zonedb.h"
#ifndef WIN32 #ifndef WIN32

View File

@ -22,6 +22,9 @@
#define PET_HOLD_ON 27 #define PET_HOLD_ON 27
#define PET_HOLD_OFF 28 #define PET_HOLD_OFF 28
class Mob;
struct NPCType;
class Pet : public NPC { class Pet : public NPC {
public: public:
Pet(NPCType *type_data, Mob *owner, PetType type, uint16 spell_id, int16 power); Pet(NPCType *type_data, Mob *owner, PetType type, uint16 spell_id, int16 power);