aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-05-07 11:32:10 +0300
committeromagdy7 <omar.professional8777@gmail.com>2023-05-07 11:32:10 +0300
commit7f501d21772d96756a851421690db08387df3c26 (patch)
tree39880a4410ab5defc74f0f27a8a6a9e1e5caa5fd /src/blinky.py
parent7194ca65ae23d96960fe7edb619efb100db0a49c (diff)
downloadMacpan-7f501d21772d96756a851421690db08387df3c26.tar.xz
Macpan-7f501d21772d96756a851421690db08387df3c26.zip
Finished clyde algorithm and added a debug mode to run the program
Diffstat (limited to 'src/blinky.py')
-rw-r--r--src/blinky.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/blinky.py b/src/blinky.py
index eee44a8..4c45644 100644
--- a/src/blinky.py
+++ b/src/blinky.py
@@ -1,8 +1,6 @@
from ghost import Ghost
+
class Blinky(Ghost):
def __init__(self, sprite_sheet, x, y):
super().__init__(sprite_sheet, "red", x, y)
-
-
-