This commit is contained in:
Eden Kirin
2023-03-26 14:37:39 +02:00
parent f54344a17f
commit 806a379253
7 changed files with 446 additions and 31 deletions

View File

@ -4,7 +4,7 @@ from typing import Optional
@dataclass
class GameSettings:
MOVE_DELAY: int = 0.5 # seconds
MOVE_DELAY: float = 0.5 # seconds
@dataclass
class BoardSettings:
@ -30,6 +30,8 @@ class WSServerSettings:
class DebugSettings:
PRINT_BOARD: bool = False
CREATE_TEST_PLAYER: bool = False
TEST_PLAYER_START_X: int = 0
TEST_PLAYER_START_Y: int = 0
@dataclass