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