cave-survival/cave_survival/config.py
2023-03-19 12:27:00 -05:00

14 lines
281 B
Python

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()