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