11 lines
237 B
Python
11 lines
237 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
|
|
|
|
class LeftLaneButton2Target(Target):
|
|
def __init__(self):
|
|
super().__init__(20000, "Canal Button Middle Top")
|
|
|
|
def hit(self):
|
|
Sound(1).play()
|
|
super().hit() |