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,9 +1,10 @@
from Target import Target
from Sound import Sound
class FixedTarget1(Target):
def __init__(self):
super().__init__(30000, "Fixed Target 1")
def hit(self):
Sound(6).play()
super().hit()