11 lines
225 B
Python
11 lines
225 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
|
|
|
|
class RightSlingshotTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(10, "Right Slingshot")
|
|
|
|
def hit(self):
|
|
Sound(6).play()
|
|
super().hit() |