mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-27 16:37:17 +00:00
corpse.cpp & .h header cleanup & forward declarations
This commit is contained in:
+18
-11
@@ -20,12 +20,7 @@ New class for handeling corpses and everything associated with them.
|
|||||||
Child of the Mob class.
|
Child of the Mob class.
|
||||||
-Quagmire
|
-Quagmire
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <math.h>
|
|
||||||
#include <iostream>
|
|
||||||
#include <sstream>
|
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
#define vsnprintf _vsnprintf
|
#define vsnprintf _vsnprintf
|
||||||
@@ -33,14 +28,26 @@ Child of the Mob class.
|
|||||||
#define strcasecmp _stricmp
|
#define strcasecmp _stricmp
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "masterentity.h"
|
#include "../common/debug.h"
|
||||||
#include "../common/packet_functions.h"
|
#include "../common/rulesys.h"
|
||||||
#include "../common/string_util.h"
|
#include "../common/string_util.h"
|
||||||
#include "../common/crc32.h"
|
|
||||||
|
#include "client.h"
|
||||||
|
#include "corpse.h"
|
||||||
|
#include "entity.h"
|
||||||
|
#include "groups.h"
|
||||||
|
#include "mob.h"
|
||||||
|
#include "raids.h"
|
||||||
|
|
||||||
|
#ifdef BOTS
|
||||||
|
#include "bot.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "quest_parser_collection.h"
|
||||||
#include "string_ids.h"
|
#include "string_ids.h"
|
||||||
#include "worldserver.h"
|
#include "worldserver.h"
|
||||||
#include "../common/rulesys.h"
|
#include <iostream>
|
||||||
#include "quest_parser_collection.h"
|
|
||||||
|
|
||||||
extern EntityList entity_list;
|
extern EntityList entity_list;
|
||||||
extern Zone* zone;
|
extern Zone* zone;
|
||||||
|
|||||||
@@ -22,7 +22,14 @@
|
|||||||
#include "mob.h"
|
#include "mob.h"
|
||||||
|
|
||||||
class Client;
|
class Client;
|
||||||
|
class EQApplicationPacket;
|
||||||
|
class Group;
|
||||||
|
class ItemInst;
|
||||||
class NPC;
|
class NPC;
|
||||||
|
class Raid;
|
||||||
|
|
||||||
|
struct ExtraAttackOptions;
|
||||||
|
struct NPCType;
|
||||||
|
|
||||||
#define MAX_LOOTERS 72
|
#define MAX_LOOTERS 72
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user