summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/gameserver
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 11:42:12 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 12:15:50 +0100
commit06be39a51f62d365ce84d7815173577d2ecf8496 (patch)
treef4ae92023dd05cbf8d7b9c73e0a8779241202c4c /src/net/tmwserv/gameserver
parent58b33406b1354e6814ed29d55a55a36053445ecd (diff)
downloadmana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.gz
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.bz2
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.xz
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.zip
Changed the includes for the net/tmwserv/ directory
Diffstat (limited to 'src/net/tmwserv/gameserver')
-rw-r--r--src/net/tmwserv/gameserver/gameserver.cpp7
-rw-r--r--src/net/tmwserv/gameserver/player.cpp7
-rw-r--r--src/net/tmwserv/gameserver/player.h2
3 files changed, 9 insertions, 7 deletions
diff --git a/src/net/tmwserv/gameserver/gameserver.cpp b/src/net/tmwserv/gameserver/gameserver.cpp
index 6966a5db..e70c4d19 100644
--- a/src/net/tmwserv/gameserver/gameserver.cpp
+++ b/src/net/tmwserv/gameserver/gameserver.cpp
@@ -23,9 +23,10 @@
#include "internal.h"
-#include "../connection.h"
-#include "../../messageout.h"
-#include "../protocol.h"
+#include "net/tmwserv/connection.h"
+#include "net/tmwserv/protocol.h"
+
+#include "net/messageout.h"
void Net::GameServer::connect(Net::Connection *connection,
const std::string &token)
diff --git a/src/net/tmwserv/gameserver/player.cpp b/src/net/tmwserv/gameserver/player.cpp
index b48872ab..ec346d9f 100644
--- a/src/net/tmwserv/gameserver/player.cpp
+++ b/src/net/tmwserv/gameserver/player.cpp
@@ -23,9 +23,10 @@
#include "internal.h"
-#include "../connection.h"
-#include "../../messageout.h"
-#include "../protocol.h"
+#include "net/tmwserv/connection.h"
+#include "net/tmwserv/protocol.h"
+
+#include "net/messageout.h"
void RespawnRequestListener::action(const gcn::ActionEvent &event)
{
diff --git a/src/net/tmwserv/gameserver/player.h b/src/net/tmwserv/gameserver/player.h
index 978905a2..3f33c7d5 100644
--- a/src/net/tmwserv/gameserver/player.h
+++ b/src/net/tmwserv/gameserver/player.h
@@ -22,7 +22,7 @@
#ifndef NET_GAMESERVER_PLAYER_H
#define NET_GAMESERVER_PLAYER_H
-#include "../../../being.h"
+#include "being.h"
#include <guichan/actionlistener.hpp>