9 lines
180 B
Python
9 lines
180 B
Python
from targets.BankTarget import BankTarget
|
|
|
|
|
|
class RightBankRight(BankTarget):
|
|
def __init__(self):
|
|
super(100, "Right Bank Right")
|
|
|
|
def hit(self):
|
|
super.hit() |