15 lines
400 B
JavaScript
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 ?? {})
|
|
},
|
|
},
|
|
}
|