#include #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; } return 0; }