10 lines
212 B
Python
10 lines
212 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
|
|
class LeftPopTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(5000, "Left Pop")
|
|
|
|
def hit(self):
|
|
Sound(3).play()
|
|
super().hit() |