mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
21 lines
276 B
C++
21 lines
276 B
C++
#pragma once
|
|
|
|
class Difficulty
|
|
{
|
|
public:
|
|
static const int PEACEFUL = 0;
|
|
static const int EASY = 1;
|
|
static const int NORMAL = 2;
|
|
static const int HARD = 3;
|
|
|
|
private:
|
|
int id;
|
|
std::wstring name;
|
|
|
|
public:
|
|
int getId();
|
|
std::wstring getName();
|
|
|
|
static int byId(int id);
|
|
};
|