12 lines
358 B
Python
12 lines
358 B
Python
from Bank import Bank
|
|
from targets.right_bank import RightBankLeft
|
|
from targets.right_bank import RightBankMiddle
|
|
from targets.right_bank import RightBankRight
|
|
|
|
class RightBank(Bank):
|
|
def __init__(self):
|
|
targets = [RightBankLeft(), RightBankMiddle(), RightBankRight]
|
|
super(0, "Right Bank", targets)
|
|
|
|
def hit(self):
|
|
super.hit() |