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

11 lines
229 B
Python

from Target import Target
from Sound import Sound
class FixedTarget4(Target):
def __init__(self):
super().__init__(30000, 'Fixed Target 4')
def hit(self):
Sound(6).play()
super().hit()