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