diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-06-25 23:05:47 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-06-25 23:05:47 +0200 |
commit | b50d18f3f882865a94458c7113aedd7a0cccce80 (patch) | |
tree | dcaacd6f02b0622a6c8979a49373d64179524b61 /main.cpp | |
parent | 445d92dbb16d443e201f3a7ac73d4fa5ba6c2697 (diff) |
Moved Application to wriggle.
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,16 +1,16 @@ #include <iostream> #include <stdexcept> -#include "engine/application.h" +#include "engine/engine.h" #include "engine/stage.h" int main(int, char**) { try { - Application* app = new Application(); + Engine engine; - app->stage = new Stage(); + engine.stage = new Stage(); - app->run(); + engine.run(); } catch(std::runtime_error e) { std::cerr << "Exception caught: " << e.what() << std::endl; } |