summaryrefslogtreecommitdiff
path: root/main.cpp
blob: 679b7eb2b5b7cfddecff280d11aa6a907150da5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
#include <stdexcept>

#include "engine/application.h"

int main(int, char**) {
	try {
		Application* app = new Application();
		
		app->run();
	} catch(std::runtime_error e) {
		std::cerr << "Exception caught: " << e.what() << std::endl;
	}
	
	return 0;
}