Реструктуризация проекта
This commit is contained in:
17
location.h
Normal file
17
location.h
Normal 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
|
||||
Reference in New Issue
Block a user