aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-04-19 02:09:53 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-04-19 02:09:53 +0200
commit6c43e3b3ab77ec0c3c57763178723a50e4dcac52 (patch)
treecbd4ce1a6ce900c1178c25f2dc6760e637aea71c /src/blinky.py
parent5cb37cd7aac7fab72b04061de6dfd5f2f5f254fa (diff)
downloadMacpan-6c43e3b3ab77ec0c3c57763178723a50e4dcac52.tar.xz
Macpan-6c43e3b3ab77ec0c3c57763178723a50e4dcac52.zip
Added the ghost sprites to the game.
Diffstat (limited to 'src/blinky.py')
-rw-r--r--src/blinky.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blinky.py b/src/blinky.py
index d30bc52..ca647e3 100644
--- a/src/blinky.py
+++ b/src/blinky.py
@@ -1,8 +1,8 @@
from Ghost import Ghost
class Blinky(Ghost):
- def __init__(self, x, y):
- super().__init__("red", x, y)
+ def __init__(self, sprite_sheet, x, y):
+ super().__init__(sprite_sheet, "red", x, y)