コード例 #1
0
 public void ClearThis(PlayerObject play)
 {
     NetMsg.MsgClearObjectInfo info = new NetMsg.MsgClearObjectInfo();
     info.Create(null, play.GetGamePackKeyEx());
     info.id = GetTypeId();
     play.SendData(info.GetBuffer());
 }
コード例 #2
0
 public void ClearThis(PlayerObject play)
 {
     NetMsg.MsgClearObjectInfo info = new NetMsg.MsgClearObjectInfo();
     info.Create(null, play.GetGamePackKeyEx());
     info.id = GetTypeId();
     play.SendData(info.GetBuffer());
 }
コード例 #3
0
ファイル: PlayerObject.cs プロジェクト: dream-young-soul/soul
        public void ClearThis(PlayerObject play)
        {
            NetMsg.MsgClearObjectInfo info = new NetMsg.MsgClearObjectInfo();
             info.Create(null, play.GetGamePackKeyEx());
             info.id = this.GetTypeId();
             play.SendData(info.GetBuffer());

             this.GetVisibleList().Remove(play.GetGameID());
        }