From 6c43e3b3ab77ec0c3c57763178723a50e4dcac52 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Wed, 19 Apr 2023 02:09:53 +0200 Subject: Added the ghost sprites to the game. --- src/clyde.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/clyde.py (limited to 'src/clyde.py') 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) + + + + -- cgit v1.2.3