Files
flippr-game/targets/bottom_lanes/RightInlaneTarget.py
Jonas Zeunert 6f85ebe1a5 forgot a name
2020-05-03 19:38:55 +02:00

9 lines
170 B
Python

from Target import Target
class RightInlaneTarget(Target):
def __init__(self):
super().__init__(100, 'Right Inlane')
def hit(self):
super.hit()