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