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