예제 #1
0
        //发送10-1协议(综合,阵营聊天请求)给服务器
        public void SendPublicMsg(SendMesVo sendMes)
        {
            Log.info(this, "发送10-1(综合,阵营聊天请求)给服务器");

            MemoryStream msdata = new MemoryStream();

            Module_10.write_10_1(msdata, sendMes.sendChatType, sendMes.content, goods);
            AppNet.gameNet.send(msdata, 10, 1);
        }