9 lines
139 B
Python
9 lines
139 B
Python
from targets.Bank import Bank
|
|
|
|
|
|
class LeftBankTarget(Bank):
|
|
def __init__(self):
|
|
super()
|
|
|
|
def hit(self):
|
|
super.hit() |