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

8 lines
186 B
Python

from Target import Target
class ReboundContactTarget(Target):
def __init__(self):
super().__init__(100, 'Rebound Contact')
def hit(self):
super().hit()()