Game state
This commit is contained in:
@ -22,5 +22,11 @@ class PlayerMoveResult(Enum):
|
||||
|
||||
class GameState(Enum):
|
||||
RUNNING = auto()
|
||||
LOCKED_FOR_PRODUCT_SELECTION = auto()
|
||||
LOCK_FOR_MOVEMENT = auto()
|
||||
ENDGAME = auto()
|
||||
|
||||
|
||||
class PlayerState(Enum):
|
||||
PLAYING = auto()
|
||||
ON_DESTINATION = auto()
|
||||
INACTIVE = auto()
|
||||
|
||||
Reference in New Issue
Block a user