add game template

This commit is contained in:
h4570
2022-07-29 23:04:31 +02:00
parent d435d08cf8
commit 8591e35c4f
21 changed files with 381 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "engine.hpp"
#include "racer_game.hpp"
int main() {
Tyra::Engine engine;
Racer::RacerGame game(&engine);
engine.run(&game);
SleepThread();
return 0;
}