stories/main.cpp

17 lines
266 B
C++
Raw Normal View History

2023-09-24 16:16:10 +00:00
#include "engine/engine.h"
2022-04-18 20:19:56 +00:00
2023-09-24 16:16:10 +00:00
int main() {
Engine::Engine app;
app.enableDebug();
try {
app.run();
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
2022-04-18 20:19:56 +00:00
}
2023-09-24 16:16:10 +00:00