9 lines
172 B
Python
9 lines
172 B
Python
from targets.Target import Target
|
|
|
|
|
|
class RightSlingshotTarget(Target):
|
|
def __init__(self):
|
|
super(10, "Right Slingshot")
|
|
|
|
def hit(self):
|
|
super.hit() |