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