mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-01-31 23:29:36 +01:00
Legger til et objekt som representerer tilstanden til spillet
This commit is contained in:
parent
56949b9326
commit
1ee86bc7f2
@ -0,0 +1,20 @@
|
|||||||
|
package inf112.fiasko.roborally.element_properties;
|
||||||
|
|
||||||
|
public enum GameState {
|
||||||
|
//Indicates that the server is waiting for something
|
||||||
|
WAITING,
|
||||||
|
//Indicates that the users' input is being run. The board should be shown
|
||||||
|
RUNNING_PROGRAMS,
|
||||||
|
//Indicates that
|
||||||
|
INITIAL_SETUP,
|
||||||
|
//
|
||||||
|
TURN_SETUP,
|
||||||
|
//Indicates that the game is in the process of cleaning up after a turn
|
||||||
|
TURN_CLEANUP,
|
||||||
|
//Indicates that the user is in the process of choosing cards
|
||||||
|
CHOOSING_CARDS,
|
||||||
|
//Indicates that the user is in the process of choosing whether to power down
|
||||||
|
CHOOSING_POWER_DOWN,
|
||||||
|
//Indicates that the user is in the process of choosing whether to stay in power down
|
||||||
|
CHOOSING_STAY_IN_POWER_DOWN
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user