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


settings = Settings()