aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
diff options
context:
space:
mode:
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)