9 lines
125 B
Python
9 lines
125 B
Python
from Bank import Bank
|
|
|
|
|
|
class LeftBank(Bank):
|
|
def __init__(self):
|
|
super()
|
|
|
|
def hit(self):
|
|
super.hit() |