Files
P42_godDaemons/Observer/handlers/arena/lifecycle.js
T

15 lines
400 B
JavaScript

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