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

17
game.h Normal file
View File

@@ -0,0 +1,17 @@
#include "player.h"
#pragma once
class Game {
public:
void run();
private:
bool isRunning = true;
Player* player = nullptr;
void showMainMenu();
void processCommand();
void render();
};
#pragma once