summaryrefslogtreecommitdiff
path: root/src/PowderToy.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-29 14:44:36 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-29 14:44:36 (GMT)
commit680a36549adaed0c3ce7e8906fadbdf190b0b3b0 (patch)
tree21ca16411c1687bb212369a59c5f3de2a0cf023b /src/PowderToy.cpp
parent7c53ca7799832920066c23cfad2f1d7fa82233c7 (diff)
downloadpowder-680a36549adaed0c3ce7e8906fadbdf190b0b3b0.zip
powder-680a36549adaed0c3ce7e8906fadbdf190b0b3b0.tar.gz
Background retrieval of save info and save list.
Diffstat (limited to 'src/PowderToy.cpp')
-rw-r--r--src/PowderToy.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PowderToy.cpp b/src/PowderToy.cpp
index 406e334..9174ed0 100644
--- a/src/PowderToy.cpp
+++ b/src/PowderToy.cpp
@@ -18,6 +18,8 @@
#include "game/GameController.h"
#include "game/GameView.h"
+#include "dialogues/ErrorMessage.h"
+
#include "client/HTTP.h"
using namespace std;
@@ -73,6 +75,8 @@ int main(int argc, char * argv[])
GameController * gameController = new GameController();
engine->ShowWindow(gameController->GetView());
+ new ErrorMessage("Error", "This is a test error message");
+
SDL_Event event;
while(engine->Running())
{