Skip to content

Difficulty Constants

The following constants are used to identify difficulties.

Difficulty Constants
1
2
3
4
5
6
7
8
9
extern const int cDifficultySandbox = 0;
extern const int cDifficultyEasy = 1;
extern const int cDifficultyModerate = 2;
extern const int cDifficultyHard = 3;
extern const int cDifficultyExpert = 4;
extern const int cDifficultyExtreme = 5;

// Current difficulty. Can be any of the above.
extern const int cDifficultyCurrent;