Use emitNet
function when you want to trigger an event from the client to the server.
You need to declare the event on the server with onNet first.
function emitNet(eventName: string, ...args?: any ) => void
// No arg
emit("foo:killPatrickForMe");
// With args
emit("foo:killThisGuyForMe", 2);