9 lines
187 B
Python
9 lines
187 B
Python
from Target import Target
|
|
|
|
|
|
class LeftLaneButton3Target(Target):
|
|
def __init__(self):
|
|
super().__init__(20000, "Canal Button Middle")
|
|
|
|
def hit(self):
|
|
super().hit()() |