aboutsummaryrefslogtreecommitdiff
path: root/src/inky.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/inky.py')
-rw-r--r--src/inky.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/inky.py b/src/inky.py
new file mode 100644
index 0000000..926a8d1
--- /dev/null
+++ b/src/inky.py
@@ -0,0 +1,9 @@
+from Ghost import Ghost
+
+class Inky(Ghost):
+ def __init__(self, sprite_sheet, x, y):
+ super().__init__(sprite_sheet, "red", x, y)
+
+
+
+