10 lines
223 B
Python
10 lines
223 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
|
|
class RightPopTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(5000, 'Right Pop')
|
|
|
|
def hit(self):
|
|
Sound(3).play()
|
|
super().hit() |