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