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