9 lines
176 B
Python
9 lines
176 B
Python
from targets.BankTarget import BankTarget
|
|
|
|
|
|
class LeftBankLeft(BankTarget):
|
|
def __init__(self):
|
|
super(100, 'Left Bank Left')
|
|
|
|
def hit(self):
|
|
super.hit() |