mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 18:51:29 +00:00
doors.cpp & .h header cleanup & forward declaration
This commit is contained in:
parent
5b6eb885a0
commit
1c7acbdbd9
@ -15,18 +15,21 @@
|
|||||||
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 "../common/debug.h"
|
||||||
#include <iostream>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include "masterentity.h"
|
|
||||||
#include "worldserver.h"
|
|
||||||
#include "string_ids.h"
|
|
||||||
#include "zonedb.h"
|
|
||||||
#include "../common/packet_functions.h"
|
|
||||||
#include "../common/packet_dump.h"
|
|
||||||
#include "../common/string_util.h"
|
#include "../common/string_util.h"
|
||||||
|
|
||||||
|
#include "client.h"
|
||||||
|
#include "doors.h"
|
||||||
|
#include "entity.h"
|
||||||
#include "guild_mgr.h"
|
#include "guild_mgr.h"
|
||||||
|
#include "mob.h"
|
||||||
|
#include "string_ids.h"
|
||||||
|
#include "worldserver.h"
|
||||||
|
#include "zonedb.h"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#define OPEN_DOOR 0x02
|
#define OPEN_DOOR 0x02
|
||||||
#define CLOSE_DOOR 0x03
|
#define CLOSE_DOOR 0x03
|
||||||
|
|||||||
12
zone/doors.h
12
zone/doors.h
@ -1,14 +1,18 @@
|
|||||||
#ifndef DOORS_H
|
#ifndef DOORS_H
|
||||||
#define DOORS_H
|
#define DOORS_H
|
||||||
#include "../common/types.h"
|
|
||||||
#include "../common/linked_list.h"
|
|
||||||
#include "../common/timer.h"
|
|
||||||
#include "../common/emu_opcodes.h"
|
#include "../common/emu_opcodes.h"
|
||||||
#include "../common/eq_packet_structs.h"
|
#include "../common/eq_packet_structs.h"
|
||||||
#include "entity.h"
|
#include "../common/linked_list.h"
|
||||||
|
|
||||||
#include "mob.h"
|
#include "mob.h"
|
||||||
#include "zonedump.h"
|
#include "zonedump.h"
|
||||||
|
|
||||||
|
class Client;
|
||||||
|
class Mob;
|
||||||
|
class NPC;
|
||||||
|
struct Door;
|
||||||
|
|
||||||
class Doors : public Entity
|
class Doors : public Entity
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user