예제 #1
0
 //监听PONG协议
 private static void OnMsgPong(MsgBase msgBase)
 {
     lastPongTime = Time.time;
 }
예제 #2
0
        //编码
        public static byte[] Encode(MsgBase msgBase)
        {
            string s = JsonUtility.ToJson(msgBase);

            return(System.Text.Encoding.UTF8.GetBytes(s));
        }