Change terminology game state -> game dump

This commit is contained in:
Eden Kirin
2023-03-30 11:32:16 +02:00
parent 48cb1a3798
commit 413e395a75
7 changed files with 40 additions and 35 deletions

View File

@ -18,3 +18,9 @@ class ObjectType(str, Enum):
class PlayerMoveResult(Enum):
OK = auto()
DESTINATION_REACHED = auto()
class GameState(Enum):
RUNNING = auto()
LOCKED_FOR_PRODUCT_SELECTION = auto()
ENDGAME = auto()