diff options
Diffstat (limited to 'src/PowderToy.cpp')
| -rw-r--r-- | src/PowderToy.cpp | 4 |
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()) { |
