Game state

This commit is contained in:
Eden Kirin
2023-03-30 11:44:20 +02:00
parent 413e395a75
commit 33f2220356
3 changed files with 18 additions and 3 deletions

View File

@ -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()