GameDifficultyLevel
enum GameDifficultyLevel {}
The different difficulty levels a game can be.
-
Easiest game difficulty.
Declaration
Objective-C
EasyGameDifficulty
Swift
case EasyGameDifficulty = 0
-
Normal / Medium game difficulty.
Declaration
Objective-C
NormalGameDifficulty
Swift
case NormalGameDifficulty = 1
-
Hardest game difficulty.
Declaration
Objective-C
HardGameDifficulty
Swift
case HardGameDifficulty = 2
-
Challenge game difficulty. The creator has set the difficulty themselves.
Declaration
Objective-C
ChallengeGameDifficulty
Swift
case ChallengeGameDifficulty = 3