Files
flippr-game/targets/technical/RisingBallTarget.py
2022-05-06 00:14:19 +02:00

9 lines
168 B
Python

from Target import Target
class RisingBallTarget(Target):
def __init__(self):
super().__init__(0, "Rising ball")
def hit(self):
super().hit()