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

settings = Settings()