aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
blob: ca647e320d89fe9ebfc3ca7bdb47daa7ccdf4e6d (plain)
1
2
3
4
5
6
7
8
from Ghost import Ghost

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