gremlin/src/server.cpp

23 lines
435 B
C++
Raw Normal View History

2011-01-14 14:59:18 +01:00
#include "Application.h"
#include <iostream>
int main(int argc, char ** argv) {
try {
Application app;
2011-01-14 21:09:14 +01:00
app.setMaster(true);
2011-01-14 14:59:18 +01:00
app.initialize(argc, argv);
while (app.isRunning())
app.update();
app.shutdown();
return 0;
} catch (const char *str) {
std::cerr << "Exception: " << str << std::endl;
return 1;
} catch (const std::exception &e) {
std::cerr << "Exception: " << e.what() << std::endl;
return 1;
}
}