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


settings = Settings()