kp
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
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()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class RightSlingshotTarget(Target):
|
||||
@@ -6,4 +7,5 @@ class RightSlingshotTarget(Target):
|
||||
super().__init__(10, "Right Slingshot")
|
||||
|
||||
def hit(self):
|
||||
Sound(6).play()
|
||||
super().hit()
|
||||
Reference in New Issue
Block a user