aboutsummaryrefslogtreecommitdiff
path: root/src/settings.py
blob: 618d8d3ac736da82941501c9af9ce298fba45d6d (plain)
1
2
3
4
5
6
7
class Settings():
    def __init__(self):
        self.width = 1000
        self.height = 1000
        self.fps = 60

settings = Settings()