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

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