Start trying own game

This commit is contained in:
2025-10-12 19:40:12 +02:00
parent 0a83eb3c10
commit 860d8febe6
8 changed files with 398 additions and 0 deletions

18
Capter1/main.cpp Normal file
View File

@@ -0,0 +1,18 @@
//#include "Game.h"
#include "ax_game.hpp"
int main(int argc, char** argv)
{
/*Game game;
bool success = game.Initialize();
if (success)
{
game.RunLoop();
}
game.Shutdown();
*/
return 0;
}