game is running! player can be created.

This commit is contained in:
DeLiss
2026-06-04 04:08:55 +05:00
commit d81111f001
10 changed files with 346 additions and 0 deletions

8
main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "Game.h"
int main() {
Game game;
game.run();
return 0;
}