9 lines
212 B
Python
9 lines
212 B
Python
from BankTarget import BankTarget
|
|
|
|
|
|
class LeftBankMiddleRightTarget(BankTarget):
|
|
def __init__(self):
|
|
super().__init__(30000, 'Left Bank Middle Right')
|
|
|
|
def hit(self):
|
|
super().hit() |