Legger til flere GameState verdier for å lettere finne ut nøyaktig hva spillet holder på med

This commit is contained in:
Kristian Knarvik 2020-04-23 17:50:12 +02:00
parent 5f3c84e842
commit 03f7090e3b

View File

@ -52,6 +52,13 @@ public enum GameState {
/**
* Indicates that the game is in the process of skipping the stay in power down screen
*/
SKIP_STAY_IN_POWER_DOWN
SKIP_STAY_IN_POWER_DOWN,
/**
* Indicates that the game is waiting for other players to finish programming
*/
WAITING_FOR_OTHER_PLAYERS_PROGRAMS,
/**
* Indicates that the game is waiting on a new deck from the server
*/
WAITING_FOR_CARDS_FROM_SERVER
}