This commit is contained in:
Jonas Zeunert
2022-09-03 14:22:29 +02:00
parent e418fc3b9b
commit 93b5cf3465
11 changed files with 29 additions and 1 deletions

View File

@@ -1,8 +1,10 @@
from Target import Target
from Sound import Sound
class LeftLaneButton1Target(Target):
def __init__(self):
super().__init__(100, 'Canal Button Top')
def hit(self):
Sound(2).play()
super().hit()