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


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