protected virtual void OnNetConnect(NetEvent evt) { Log.Debug("CS OnNetConnect : " + evt.sucess + " ; data : " + evt.error.ToString()); if (!string.IsNullOrEmpty(evt.error)) { if (null != onFailed) { onFailed(); } } else { if (onConnect != null) { onConnect(evt.sucess, evt.error); } } }
protected virtual void OnRecvCmd(NetEvent evt) { onReceive?.Invoke(evt.cmd, evt.data); }