Реструктуризация проекта

This commit is contained in:
DeLiss
2026-06-08 08:36:44 +05:00
parent ffca332646
commit 1e7bac87d3
10 changed files with 68 additions and 45 deletions

17
include/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;
void showMainMenu();
void processCommand();
void render();
};
#pragma once