public void Send()
        {
            var message = JsonUtility.ToJson(this);

#if UNITY_WEBGL && !UNITY_EDITOR
            NetworkUpdateHandler.BrowserEmitMessage(message);
#else
            //TODO(Brandon): find a way to use SocketIOEditorSimulator from here
#endif
        }