summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-30 20:36:56 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-30 20:36:56 +0300
commitf513868a135c1af288ff13ba2fcfdd6a5dc70a19 (patch)
treea979327e71dae600561f6402f18552561665ab10 /src/client.cpp
parent076b11c903f88592fbd74f3af3989e71362912f8 (diff)
downloadmv-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.gz
mv-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.bz2
mv-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.tar.xz
mv-f513868a135c1af288ff13ba2fcfdd6a5dc70a19.zip
move db files into db directory.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/client.cpp b/src/client.cpp
index fb58c313a..c2b0ad8fb 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -82,25 +82,26 @@
#include "net/net.h"
#include "net/partyhandler.h"
-#include "resources/avatardb.h"
-#include "resources/chardb.h"
-#include "resources/colordb.h"
-#include "resources/deaddb.h"
-#include "resources/emotedb.h"
#include "resources/imagehelper.h"
#include "resources/openglimagehelper.h"
-#include "resources/palettedb.h"
#include "resources/surfaceimagehelper.h"
-#include "resources/sounddb.h"
-#include "resources/itemdb.h"
-#include "resources/mapdb.h"
-#include "resources/monsterdb.h"
+#include "resources/resourcemanager.h"
+
+#include "resources/db/avatardb.h"
+#include "resources/db/chardb.h"
+#include "resources/db/colordb.h"
+#include "resources/db/deaddb.h"
+#include "resources/db/emotedb.h"
+#include "resources/db/sounddb.h"
+#include "resources/db/itemdb.h"
+#include "resources/db/mapdb.h"
+#include "resources/db/monsterdb.h"
+#include "resources/db/npcdb.h"
#ifdef MANASERV_SUPPORT
-#include "resources/specialdb.h"
+#include "resources/db/specialdb.h"
#endif
-#include "resources/npcdb.h"
-#include "resources/petdb.h"
-#include "resources/resourcemanager.h"
+#include "resources/db/palettedb.h"
+#include "resources/db/petdb.h"
#include "utils/cpu.h"
#include "utils/files.h"