summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-01-12 14:19:47 -0700
committerJared <jaxad0127@gmail.com>2010-01-12 14:41:34 -0700
commit1420656e08f65f3e5c963f82b10a718b8026d216 (patch)
tree262441cb8f9587b982f9078398844021c0d22de0 /src/game.cpp
parentd18b9fb1aa086d3ed0187d61940564f197411cf4 (diff)
downloadmana-client-1420656e08f65f3e5c963f82b10a718b8026d216.tar.gz
mana-client-1420656e08f65f3e5c963f82b10a718b8026d216.tar.bz2
mana-client-1420656e08f65f3e5c963f82b10a718b8026d216.tar.xz
mana-client-1420656e08f65f3e5c963f82b10a718b8026d216.zip
Standardize header order
Also remove some extra new lines and fix eAthena's PartyTab define guards.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 9cd91b04..ff947a24 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -19,6 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include "game.h"
+
#include "beingmanager.h"
#include "channelmanager.h"
#include "commandhandler.h"
@@ -27,7 +29,6 @@
#include "emoteshortcut.h"
#include "engine.h"
#include "flooritemmanager.h"
-#include "game.h"
#include "graphics.h"
#include "itemshortcut.h"
#include "joystick.h"
@@ -41,9 +42,6 @@
#include "playerrelations.h"
#include "sound.h"
-#include "gui/widgets/chattab.h"
-#include "gui/widgets/emoteshortcutcontainer.h"
-#include "gui/widgets/itemshortcutcontainer.h"
#include "gui/buy.h"
#include "gui/buysell.h"
#include "gui/chat.h"
@@ -75,10 +73,14 @@
#include "gui/specialswindow.h"
#include "gui/storagewindow.h"
+#include "gui/widgets/chattab.h"
+#include "gui/widgets/emoteshortcutcontainer.h"
+#include "gui/widgets/itemshortcutcontainer.h"
+
#include "net/gamehandler.h"
#include "net/generalhandler.h"
-#include "net/playerhandler.h"
#include "net/net.h"
+#include "net/playerhandler.h"
#include "resources/imagewriter.h"