aboutsummaryrefslogtreecommitdiff
path: root/src/settings.py
diff options
context:
space:
mode:
authorMoisis <moisis.george@yahoo.com>2023-05-17 14:04:38 +0300
committerMoisis <moisis.george@yahoo.com>2023-05-17 14:04:38 +0300
commit3d7e3d1eba26cc57b31337b0708fce3747f8a988 (patch)
treee9f47e18b3a6365ca383a6da0cbbc424e8b6d3fd /src/settings.py
parent8eeb31dba61e8c9b29704c5988f95dcba4338fca (diff)
downloadMacpan-3d7e3d1eba26cc57b31337b0708fce3747f8a988.tar.xz
Macpan-3d7e3d1eba26cc57b31337b0708fce3747f8a988.zip
Improved GUI
Settings added (Debug , Sound) SoundSystem added (Become sometimes laggy)
Diffstat (limited to 'src/settings.py')
-rw-r--r--src/settings.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/settings.py b/src/settings.py
index a8dfa24..cb4ec0d 100644
--- a/src/settings.py
+++ b/src/settings.py
@@ -1,10 +1,9 @@
class Settings():
- def __init__(self):
- self.width = 900
- self.height = 990
- self.fps = 60
- self.debug = False
- self.sound = False
+ width = 900
+ height = 990
+ fps = 60
+ debug = False
+ sound = False
settings = Settings()