doors.cpp & .h header cleanup & forward declaration

This commit is contained in:
Akkadius
2014-12-15 16:53:53 -06:00
parent 5b6eb885a0
commit 1c7acbdbd9
2 changed files with 20 additions and 13 deletions
+8 -4
View File
@@ -1,14 +1,18 @@
#ifndef 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/eq_packet_structs.h"
#include "entity.h"
#include "../common/linked_list.h"
#include "mob.h"
#include "zonedump.h"
class Client;
class Mob;
class NPC;
struct Door;
class Doors : public Entity
{
public: