wip
This commit is contained in:
parent
44ecb00701
commit
80d7ebf7eb
7 changed files with 189 additions and 294 deletions
14
cave_survival/config.py
Normal file
14
cave_survival/config.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import pydantic
|
||||
|
||||
|
||||
class Config(pydantic.BaseModel):
|
||||
screen_width: int = 800
|
||||
screen_height: int = 600
|
||||
|
||||
BLACK: tuple[int] = (0, 0, 0)
|
||||
WHITE: tuple[int] = (255, 255, 255)
|
||||
GREY: tuple[int] = (128, 128, 128)
|
||||
RED: tuple[int] = (255, 128, 128)
|
||||
|
||||
|
||||
config = Config()
|
||||
Loading…
Add table
Add a link
Reference in a new issue