This commit is contained in:
Jonas Zeunert
2021-03-07 15:47:45 +01:00
parent c54ab2e311
commit 6450ee22dc
10 changed files with 277 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
from Event import Event
class FixedTargetEvent(Event):
def __init__(self, playerState):
super().__init__("Fixed Target Event")
self.playerState = playerState
def trigger(self, target):
super().trigger(target)
self.playerState().advanceTunnel()