Files
flippr-game/targets/canal/CanalButtonTopTarget.py
Jonas Zeunert 93b5cf3465 tutu
2022-09-03 14:22:29 +02:00

10 lines
236 B
Python

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()