9 lines
248 B
Python
9 lines
248 B
Python
from events.BankEvent import BankEvent
|
|
from solenoids.BottomRightBankSolenoid import BottomRightBankSolenoid
|
|
|
|
|
|
class BottomRightBankEvent(BankEvent):
|
|
def __init__(self):
|
|
super().__init__(BottomRightBankSolenoid(), "Bottom Right Bank Event")
|
|
|