8 lines
245 B
Python
8 lines
245 B
Python
from events.PopEvent import PopEvent
|
|
from solenoids.BottomRightPopSolenoid import BottomRightPopSolenoid
|
|
|
|
|
|
class BottomRightPopEvent(PopEvent):
|
|
def __init__(self):
|
|
super().__init__(BottomRightPopSolenoid(), "Bottom Right Pop Event")
|