Beginning to create the placeholder classes

This commit is contained in:
Kayne Ruse
2013-08-29 19:57:25 +10:00
parent d5f7363c33
commit b675f516e7
13 changed files with 135 additions and 50 deletions
+3 -4
View File
@@ -12,10 +12,9 @@ int main(int, char**) {
cout << "Beginning server" << endl;
#endif
try {
ServerApplication app;
app.Init();
app.Loop();
app.Quit();
ServerApplication::GetInstance()->Init();
ServerApplication::GetInstance()->Loop();
ServerApplication::GetInstance()->Quit();
}
catch(exception& e) {
cerr << "Fatal error: " << e.what() << endl;