Created SurfaceManager

This commit is contained in:
Kayne Ruse
2013-04-28 23:04:17 +10:00
parent 79304f24b8
commit 1226fa08ca
8 changed files with 189 additions and 5 deletions
+6
View File
@@ -6,6 +6,9 @@
using namespace std;
int main(int, char**) {
#ifdef DEBUG
cout << "Beginning program" << endl;
#endif
SceneManager app;
try {
app.Init();
@@ -16,5 +19,8 @@ int main(int, char**) {
cerr << "Fatal error: " << e.what() << endl;
return 1;
}
#ifdef DEBUG
cout << "Clean exit" << endl;
#endif
return 0;
}