aboutsummaryrefslogtreecommitdiff
path: root/src/settings.py
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-03-22 01:12:33 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-03-22 01:12:33 +0200
commitc2a57ee13380b17126df50b8dbafa36fc98d7bf0 (patch)
tree788f372be2e48eb5b759164716fe4a60f2f129ca /src/settings.py
parent53c06e150c11665d82b14219f584b92d06c89b40 (diff)
downloadMacpan-c2a57ee13380b17126df50b8dbafa36fc98d7bf0.tar.xz
Macpan-c2a57ee13380b17126df50b8dbafa36fc98d7bf0.zip
Added the map for pacman using a 2D array describing the map
Diffstat (limited to 'src/settings.py')
-rw-r--r--src/settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.py b/src/settings.py
index 618d8d3..cdda2a4 100644
--- a/src/settings.py
+++ b/src/settings.py
@@ -1,7 +1,7 @@
class Settings():
def __init__(self):
- self.width = 1000
- self.height = 1000
+ self.width = 900
+ self.height = 950
self.fps = 60
settings = Settings()