From c478aeeb9b7b40bfd3415500b4886c0c0542bc26 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 23 May 2010 18:13:50 +0200 Subject: Added Stage-class. --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 679b7eb..1168949 100644 --- a/main.cpp +++ b/main.cpp @@ -2,11 +2,14 @@ #include #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; -- cgit v1.2.3