From 62f492490c9786625eadfed65fcae6e5485240fa Mon Sep 17 00:00:00 2001 From: Tobydrama Date: Thu, 16 Apr 2020 15:03:04 +0200 Subject: [PATCH] la til flere enums --- .../fiasko/roborally/elementproperties/GameState.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java b/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java index 3a091f6..ef0ab07 100644 --- a/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java +++ b/src/main/java/inf112/fiasko/roborally/elementproperties/GameState.java @@ -22,5 +22,10 @@ public enum GameState { //Indicates that the user is in the process of sending their cards to the server SENDING_CARDS, //Indicates that the game is won by a player - GAME_IS_WON + GAME_IS_WON, + + JUST_BEFORE_CHOOSING_CARDS, + + LOADING + }