giving events a name

This commit is contained in:
Jonas Zeunert
2020-05-03 20:33:49 +02:00
parent 8553361815
commit 6edd604c28
13 changed files with 14 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ class StartGameEvent(Event):
def __init__(self):
self.flipper = MainFlipper()
self.outHoleSolenoid = OutHoleSolenoid()
super().__init__("Start Game Event")
def trigger(self):
super().trigger()