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,4 +1,5 @@
from Target import Target
from Sound import Sound
class FixedTarget4(Target):
@@ -6,4 +7,5 @@ class FixedTarget4(Target):
super().__init__(30000, 'Fixed Target 4')
def hit(self):
Sound(6).play()
super().hit()