This commit is contained in:
Waylon Walker 2023-03-19 13:00:17 -05:00
parent 80d7ebf7eb
commit cedb02e77e
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
5 changed files with 110 additions and 90 deletions

View file

@ -4,6 +4,8 @@ import pydantic
class Config(pydantic.BaseModel):
screen_width: int = 800
screen_height: int = 600
fps: int = 60
day_length: int = 60 * 1000
BLACK: tuple[int] = (0, 0, 0)
WHITE: tuple[int] = (255, 255, 255)