9 lines
230 B
Python
9 lines
230 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
class LeftSlingshotTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(100, 'Left Slingshot')
|
|
|
|
def hit(self):
|
|
Sound(6).play()
|
|
super().hit() |