From 03f7090e3b5f67793f4c19678283a1355680a0e2 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Thu, 23 Apr 2020 17:50:12 +0200 Subject: [PATCH] =?UTF-8?q?Legger=20til=20flere=20GameState=20verdier=20fo?= =?UTF-8?q?r=20=C3=A5=20lettere=20finne=20ut=20n=C3=B8yaktig=20hva=20spill?= =?UTF-8?q?et=20holder=20p=C3=A5=20med?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fiasko/roborally/elementproperties/GameState.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java b/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java index 7006db1..4280dd0 100644 --- a/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java +++ b/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java @@ -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 }