8 lines
184 B
Python
8 lines
184 B
Python
from Target import Target
|
|
|
|
class LeftSlingshotTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(100, 'Left Slingshot')
|
|
|
|
def hit(self):
|
|
super().hit()() |