This commit is contained in:
Jonas Zeunert
2022-09-03 21:00:45 +02:00
parent 4194ef5261
commit 4b41444256

View File

@@ -11,7 +11,10 @@ class InputHandler:
while self.isRunning:
event = await networking.getInputEvent()
try:
self.targets[event["name"]].hit() #Todo
except Exception:
pass
def stop(self):
self.isRunning = False