aboutsummaryrefslogtreecommitdiff
path: root/src/inky.py
blob: 95eb80bd3b94b2bf3b77941f1bf471f9be198d59 (plain)
1
2
3
4
5
6
7
8
9
from ghost import Ghost

class Inky(Ghost):
    def __init__(self, sprite_sheet, x, y):
        super().__init__(sprite_sheet, "red", x, y)