コード例 #1
0
ファイル: PlayerObject.cs プロジェクト: dream-young-soul/soul
 //信息框 2015.9.21 23:36
 public void MsgBox(String text)
 {
     NetMsg.MsgNotice notice = new NetMsg.MsgNotice();
     notice.Create(null, GetGamePackKeyEx());
     byte[] buff = notice.GetMsgBoxBuff(text);
     this.SendData(buff);
 }