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