aboutsummaryrefslogtreecommitdiff
path: root/src/inky.py
blob: 926a8d18dca30116cb07fe19a61e30507b559b4d (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)