summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 679b7eb..1168949 100644
--- a/main.cpp
+++ b/main.cpp
@@ -2,11 +2,14 @@
#include <stdexcept>
#include "engine/application.h"
+#include "engine/stage.h"
int main(int, char**) {
try {
Application* app = new Application();
+ app->stage = new Stage();
+
app->run();
} catch(std::runtime_error e) {
std::cerr << "Exception caught: " << e.what() << std::endl;