Files
flippr-game/targets/technical/RisingBall.py
2020-05-03 19:47:21 +02:00

9 lines
164 B
Python

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