This commit is contained in:
Waylon Walker 2023-03-19 12:27:00 -05:00
parent 44ecb00701
commit 80d7ebf7eb
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
7 changed files with 189 additions and 294 deletions

14
cave_survival/config.py Normal file
View 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()