#include #include "game.hpp" int main(int argc, char const *argv[]) { game game; bool success = game.Init(100,100,1024,768); while (success) { game.RunLoop(); } game.Shutdown(); return 0; }