aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
blob: eee44a871087118aeab36e8e91c52d57b1bc3529 (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)