mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-12 09:52:34 +00:00
mob.cpp #include cleanup
mob.h declarations mob.h #include cleanup
This commit is contained in:
parent
4a597a2b38
commit
fde9517247
14
zone/mob.cpp
14
zone/mob.cpp
@ -15,17 +15,17 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
|
||||||
#include "masterentity.h"
|
|
||||||
#include "../common/spdat.h"
|
#include "../common/spdat.h"
|
||||||
#include "string_ids.h"
|
|
||||||
#include "worldserver.h"
|
|
||||||
#include "quest_parser_collection.h"
|
|
||||||
#include "../common/string_util.h"
|
#include "../common/string_util.h"
|
||||||
|
|
||||||
#include <sstream>
|
#include "quest_parser_collection.h"
|
||||||
#include <math.h>
|
#include "string_ids.h"
|
||||||
|
#include "worldserver.h"
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <math.h>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
extern EntityList entity_list;
|
extern EntityList entity_list;
|
||||||
|
|
||||||
|
|||||||
13
zone/mob.h
13
zone/mob.h
@ -18,21 +18,28 @@
|
|||||||
#ifndef MOB_H
|
#ifndef MOB_H
|
||||||
#define MOB_H
|
#define MOB_H
|
||||||
|
|
||||||
#include "../common/features.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "entity.h"
|
#include "entity.h"
|
||||||
#include "hate_list.h"
|
#include "hate_list.h"
|
||||||
#include "pathing.h"
|
#include "pathing.h"
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
char* strn0cpy(char* dest, const char* source, uint32 size);
|
char* strn0cpy(char* dest, const char* source, uint32 size);
|
||||||
|
|
||||||
#define MAX_SPECIAL_ATTACK_PARAMS 8
|
#define MAX_SPECIAL_ATTACK_PARAMS 8
|
||||||
|
|
||||||
class EGNode;
|
class EGNode;
|
||||||
class MobFearState;
|
class Client;
|
||||||
|
class EQApplicationPacket;
|
||||||
|
class Group;
|
||||||
|
class ItemInst;
|
||||||
|
class NPC;
|
||||||
|
class Raid;
|
||||||
|
struct Item_Struct;
|
||||||
|
struct NewSpawn_Struct;
|
||||||
|
struct PlayerPositionUpdateServer_Struct;
|
||||||
|
|
||||||
class Mob : public Entity {
|
class Mob : public Entity {
|
||||||
public:
|
public:
|
||||||
enum CLIENT_CONN_STATUS { CLIENT_CONNECTING, CLIENT_CONNECTED, CLIENT_LINKDEAD,
|
enum CLIENT_CONN_STATUS { CLIENT_CONNECTING, CLIENT_CONNECTED, CLIENT_LINKDEAD,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user