9 lines
243 B
Python
9 lines
243 B
Python
from events.BankEvent import BankEvent
|
|
from solenoids.BottomLeftBankSolenoid import BottomLeftBankSolenoid
|
|
|
|
|
|
class BottomLeftBankEvent(BankEvent):
|
|
def __init__(self):
|
|
super().__init__(BottomLeftBankSolenoid(), "Bottom Left Bank Event")
|
|
|