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

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
location.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include <string>
class Location {
public:
std::string title;
int id;
int sizeX;
int sizeY;
int gold = 0;
Location() {};
Location(std::string _name);
void showStats();
};
#pragma once