10 lines
218 B
Python
10 lines
218 B
Python
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() |