summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2008-04-25 17:07:13 +0000
committerDavid Athay <ko2fan@gmail.com>2008-04-25 17:07:13 +0000
commit23e6d031b6c9f20dea6ba48dd1826d3286e18233 (patch)
tree933c3ead1f2f8fb664e512318b7986cd1db9f7d8 /src/game.cpp
parent6327fe95b451b017396fc53033c52de13a9966f2 (diff)
downloadmana-23e6d031b6c9f20dea6ba48dd1826d3286e18233.tar.gz
mana-23e6d031b6c9f20dea6ba48dd1826d3286e18233.tar.bz2
mana-23e6d031b6c9f20dea6ba48dd1826d3286e18233.tar.xz
mana-23e6d031b6c9f20dea6ba48dd1826d3286e18233.zip
Added party window, updated codeblocks project file.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 039a1916..d762bde2 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -62,6 +62,8 @@
#include "gui/npclistdialog.h"
#include "gui/npc_text.h"
#include "gui/ok_dialog.h"
+#include "gui/partywindow.h"
+#include "gui/quitdialog.h"
#include "gui/sdlinput.h"
#include "gui/sell.h"
#include "gui/setup.h"
@@ -69,7 +71,6 @@
#include "gui/status.h"
#include "gui/trade.h"
#include "gui/viewport.h"
-#include "gui/quitdialog.h"
#include "net/beinghandler.h"
#include "net/buysellhandler.h"
@@ -123,6 +124,7 @@ GuildWindow *guildWindow;
HelpWindow *helpWindow;
DebugWindow *debugWindow;
ItemShortcutWindow *itemShortcutWindow;
+PartyWindow *partyWindow;
BeingManager *beingManager = NULL;
FloorItemManager *floorItemManager = NULL;
@@ -205,6 +207,7 @@ void createGuiWindows()
helpWindow = new HelpWindow();
debugWindow = new DebugWindow();
itemShortcutWindow = new ItemShortcutWindow();
+ partyWindow = new PartyWindow();
// Initialize window positions
//chargeDialog->setPosition(
@@ -252,6 +255,7 @@ void destroyGuiWindows()
delete helpWindow;
delete debugWindow;
delete itemShortcutWindow;
+ delete partyWindow;
}
Game::Game():