Difficulty Constants
The following constants are used to identify difficulties.
Difficulty Constants |
---|
| 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;
|