8 lines
200 B
Python
8 lines
200 B
Python
from Target import Target
|
|
from Sound import Sound
|
|
class LeftInlaneTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(3000, 'Left Inlane')
|
|
|
|
def hit(self):
|
|
super().hit() |