Files
flippr-game/targets/fixed_targets/FixedTarget2.py
Jonas Zeunert 29150d6ddc typo replace
2020-05-03 19:48:07 +02:00

9 lines
167 B
Python

from Target import Target
class FixedTarget2(Target):
def __init__(self):
super().__init__(0, "Fixed Target 2")
def hit(self):
super().hit()