From e218ebb92f0f3003251ab4ac9af812e52c239316 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 15 Dec 2014 18:56:23 -0600 Subject: [PATCH] titles.cpp & .h header cleanup and forward declare --- zone/titles.cpp | 10 +++++++--- zone/titles.h | 2 -- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/zone/titles.cpp b/zone/titles.cpp index eeae38b8a..a9e8454f1 100644 --- a/zone/titles.cpp +++ b/zone/titles.cpp @@ -15,11 +15,15 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "../common/debug.h" + #include "../common/eq_packet_structs.h" -#include "masterentity.h" -#include "titles.h" #include "../common/string_util.h" + +#include "client.h" +#include "entity.h" +#include "mob.h" + +#include "titles.h" #include "worldserver.h" extern WorldServer worldserver; diff --git a/zone/titles.h b/zone/titles.h index 51d29d4d6..a942a5688 100644 --- a/zone/titles.h +++ b/zone/titles.h @@ -18,9 +18,7 @@ #ifndef TITLES_H #define TITLES_H -#include "../common/types.h" #include -#include class Client; class EQApplicationPacket;