11 lines
233 B
Python
11 lines
233 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
|
|
|
|
class LeftLaneButton3Target(Target):
|
|
def __init__(self):
|
|
super().__init__(20000, "Canal Button Middle")
|
|
|
|
def hit(self):
|
|
Sound(2).play()
|
|
super().hit() |