1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

Add random map description and display it in RMG menu

This commit is contained in:
Tomasz Zieliński
2024-02-03 16:23:56 +01:00
parent cb841e2e02
commit b7df6064cd
17 changed files with 45 additions and 11 deletions

View File

@@ -248,6 +248,7 @@ public:
void setName(const std::string & value);
const std::string & getId() const;
const std::string & getName() const;
const std::string & getDescription() const;
const CPlayerCountRange & getPlayers() const;
const CPlayerCountRange & getHumanPlayers() const;
@@ -263,6 +264,7 @@ public:
private:
std::string id;
std::string name;
std::string description;
int3 minSize;
int3 maxSize;
CPlayerCountRange players;