diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-04-19 02:09:53 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-04-19 02:09:53 +0200 |
| commit | 6c43e3b3ab77ec0c3c57763178723a50e4dcac52 (patch) | |
| tree | cbd4ce1a6ce900c1178c25f2dc6760e637aea71c /src/clyde.py | |
| parent | 5cb37cd7aac7fab72b04061de6dfd5f2f5f254fa (diff) | |
| download | Macpan-6c43e3b3ab77ec0c3c57763178723a50e4dcac52.tar.xz Macpan-6c43e3b3ab77ec0c3c57763178723a50e4dcac52.zip | |
Added the ghost sprites to the game.
Diffstat (limited to 'src/clyde.py')
| -rw-r--r-- | src/clyde.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/clyde.py b/src/clyde.py new file mode 100644 index 0000000..ae96bfb --- /dev/null +++ b/src/clyde.py @@ -0,0 +1,9 @@ +from Ghost import Ghost + +class Clyde(Ghost): + def __init__(self, sprite_sheet, x, y): + super().__init__(sprite_sheet, "red", x, y) + + + + |
