aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/blinky.py')
-rw-r--r--src/blinky.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/blinky.py b/src/blinky.py
index 4c45644..b1bdcb4 100644
--- a/src/blinky.py
+++ b/src/blinky.py
@@ -2,5 +2,6 @@ from ghost import Ghost
class Blinky(Ghost):
- def __init__(self, sprite_sheet, x, y):
- super().__init__(sprite_sheet, "red", x, y)
+ def __init__(self, sprite_sheet, x, y,settings):
+ super().__init__(sprite_sheet, "red", x, y, settings)
+