9 lines
171 B
Python
9 lines
171 B
Python
from targets.Target import Target
|
|
|
|
|
|
class RightOutlaneTarget(Target):
|
|
def __init__(self):
|
|
super(50000, "Right Outlane")
|
|
|
|
def hit(self):
|
|
super.hit() |