Legger til enum for vinnsenario

Co-Authored-By: torlunjen <torlunjen@users.noreply.github.com>
This commit is contained in:
GabrielMagnus 2020-04-14 15:16:51 +02:00
parent fe78a2f666
commit 3edc1c384a

View File

@ -16,5 +16,7 @@ public enum GameState {
//Indicates that the user is in the process of choosing whether to power down //Indicates that the user is in the process of choosing whether to power down
CHOOSING_POWER_DOWN, CHOOSING_POWER_DOWN,
//Indicates that the user is in the process of choosing whether to stay in power down //Indicates that the user is in the process of choosing whether to stay in power down
CHOOSING_STAY_IN_POWER_DOWN CHOOSING_STAY_IN_POWER_DOWN,
//Indicates that the game is won by a player
GAME_IS_WON
} }