diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-04-16 19:24:24 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-04-16 19:24:24 +0200 |
| commit | 16e402a3a4bd82c0eefe50e31d6613f5f7a99a02 (patch) | |
| tree | 736e22432bee393dab1ea5c99e83e92ff68e642a /src/blinky.py | |
| parent | b673be7fc9e94a5a8245797be6a62547c4efa579 (diff) | |
| download | Macpan-16e402a3a4bd82c0eefe50e31d6613f5f7a99a02.tar.xz Macpan-16e402a3a4bd82c0eefe50e31d6613f5f7a99a02.zip | |
Added code for blinky and pinky
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) + + + |
