diff options
| author | Moisis <moisis.george@yahoo.com> | 2023-05-17 14:04:38 +0300 |
|---|---|---|
| committer | Moisis <moisis.george@yahoo.com> | 2023-05-17 14:04:38 +0300 |
| commit | 3d7e3d1eba26cc57b31337b0708fce3747f8a988 (patch) | |
| tree | e9f47e18b3a6365ca383a6da0cbbc424e8b6d3fd /src/blinky.py | |
| parent | 8eeb31dba61e8c9b29704c5988f95dcba4338fca (diff) | |
| download | Macpan-3d7e3d1eba26cc57b31337b0708fce3747f8a988.tar.xz Macpan-3d7e3d1eba26cc57b31337b0708fce3747f8a988.zip | |
Improved GUI
Settings added (Debug , Sound)
SoundSystem added (Become sometimes laggy)
Diffstat (limited to 'src/blinky.py')
| -rw-r--r-- | src/blinky.py | 5 |
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) + |
