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

settings = Settings()