9 lines
178 B
Python
9 lines
178 B
Python
from targets.BankTarget import BankTarget
|
|
|
|
|
|
class RightBankLeft(BankTarget):
|
|
def __init__(self):
|
|
super(100, "Right Bank Left")
|
|
|
|
def hit(self):
|
|
super.hit() |