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


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