9 lines
174 B
Python
9 lines
174 B
Python
from Target import Target
|
|
|
|
|
|
class RightInlaneTarget(Target):
|
|
def __init__(self):
|
|
super().__init__(30000, 'Right Inlane')
|
|
|
|
def hit(self):
|
|
super().hit() |