diff options
Diffstat (limited to 'src/blinky.py')
| -rw-r--r-- | src/blinky.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/blinky.py b/src/blinky.py new file mode 100644 index 0000000..d30bc52 --- /dev/null +++ b/src/blinky.py @@ -0,0 +1,8 @@ +from Ghost import Ghost + +class Blinky(Ghost): + def __init__(self, x, y): + super().__init__("red", x, y) + + + |
