aboutsummaryrefslogtreecommitdiff
path: root/src/settings.py
diff options
context:
space:
mode:
authorMoisis <moisis.george@yahoo.com>2023-05-19 23:41:23 +0300
committerGitHub <noreply@github.com>2023-05-19 23:41:23 +0300
commit271af3b2b85ac05aa8061cef0f35e7540f90b778 (patch)
treea0475e1d88be01716e76f2e75c495a4284290bb9 /src/settings.py
parent8eeb31dba61e8c9b29704c5988f95dcba4338fca (diff)
parent6a351ed2d6a554ed6d338abba234527705d1040f (diff)
downloadMacpan-master.tar.xz
Macpan-master.zip
Merge pull request #7 from omagdy7/FinalMISOHEADmaster
Final Touches
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()