Files
P42_godDaemons/Observer/handlers/arena/lifecycle.js
T
2026-06-21 21:08:46 +00:00

15 lines
355 B
JavaScript

export const eventHandlers = {
'arena:lifecycle': {
onYourMarks(msg, chan) {
this.observerSrv?.onYourMarks()
},
bigBang(msg, chan) {
this.observerSrv?.onBigBang()
},
simulationStopped(msg, chan) {
this.observerSrv?.onSimulationStopped(msg.payload ?? {})
},
},
}