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

settings = Settings()