From a9226c00d8b07f8a16044577c2cfb7a3feac32d2 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 15 Dec 2014 18:59:21 -0600 Subject: [PATCH] trading.cpp header include cleanup --- zone/trading.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/zone/trading.cpp b/zone/trading.cpp index 240aa23b1..b9b582bfe 100644 --- a/zone/trading.cpp +++ b/zone/trading.cpp @@ -15,14 +15,20 @@ 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 "masterentity.h" -#include "string_ids.h" -#include "../common/string_util.h" #include "../common/rulesys.h" +#include "../common/string_util.h" + +#include "client.h" +#include "entity.h" +#include "mob.h" + #include "quest_parser_collection.h" +#include "string_ids.h" #include "worldserver.h" -#include "queryserv.h" + +class QueryServ; extern WorldServer worldserver; extern QueryServ* QServ;