tutu
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class CanalButtonTopTarget(Target):
|
||||
@@ -6,4 +7,5 @@ class CanalButtonTopTarget(Target):
|
||||
super().__init__(20000, "Canal Button Bottom")
|
||||
|
||||
def hit(self):
|
||||
Sound(2).play()
|
||||
super().hit()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class LeftLaneButton4Target(Target):
|
||||
@@ -6,4 +7,5 @@ class LeftLaneButton4Target(Target):
|
||||
super().__init__(20000, "Canal Button Middle Bottom")
|
||||
|
||||
def hit(self):
|
||||
Sound(1).play()
|
||||
super().hit()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class LeftLaneButton3Target(Target):
|
||||
@@ -6,4 +7,5 @@ class LeftLaneButton3Target(Target):
|
||||
super().__init__(20000, "Canal Button Middle")
|
||||
|
||||
def hit(self):
|
||||
Sound(2).play()
|
||||
super().hit()
|
||||
@@ -1,4 +1,5 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
|
||||
class LeftLaneButton2Target(Target):
|
||||
@@ -6,4 +7,5 @@ class LeftLaneButton2Target(Target):
|
||||
super().__init__(20000, "Canal Button Middle Top")
|
||||
|
||||
def hit(self):
|
||||
Sound(1).play()
|
||||
super().hit()
|
||||
@@ -1,8 +1,10 @@
|
||||
from Target import Target
|
||||
from Sound import Sound
|
||||
|
||||
class LeftLaneButton1Target(Target):
|
||||
def __init__(self):
|
||||
super().__init__(100, 'Canal Button Top')
|
||||
|
||||
def hit(self):
|
||||
Sound(2).play()
|
||||
super().hit()
|
||||
Reference in New Issue
Block a user