diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,15 +1,10 @@ #include <iostream> #include "Game.hpp" #include "graphics/AssetManager.hpp" -#include "Debug.hpp" int main() { - LOG("Process started",INFO,Unknown); - try { + Game game; game.Exec(); - } catch (std::exception e) { - std::cerr << "Catch exception: " << e.what() << std::endl; - } return 0; }
\ No newline at end of file |