8 lines
225 B
Python
8 lines
225 B
Python
from events.PopEvent import PopEvent
|
|
from solenoids.TopLeftPopSolenoid import TopLeftPopSolenoid
|
|
|
|
|
|
class TopLeftPopEvent(PopEvent):
|
|
def __init__(self):
|
|
super().__init__(TopLeftPopSolenoid(), "Top Left Pop Event")
|