tutu
This commit is contained in:
@@ -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()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class FixedTarget2(Target):
|
||||
@@ -6,4 +7,5 @@ class FixedTarget2(Target):
|
||||
super().__init__(30000, "Fixed Target 2")
|
||||
|
||||
def hit(self):
|
||||
Sound(6).play()
|
||||
super().hit()
|
||||
@@ -1,8 +1,10 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
class FixedTarget3(Target):
|
||||
def __init__(self):
|
||||
super().__init__(30000, 'Fixed Target 3')
|
||||
|
||||
def hit(self):
|
||||
Sound(6).play()
|
||||
super().hit()
|
||||
@@ -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()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class FixedTarget5(Target):
|
||||
@@ -6,4 +7,5 @@ class FixedTarget5(Target):
|
||||
super().__init__(30000, 'Fixed Target 5')
|
||||
|
||||
def hit(self):
|
||||
Sound(6).play()
|
||||
super().hit()
|
||||
Reference in New Issue
Block a user