예제 #1
0
        public void CopyFrom(player_profile_info_req from)
        {
            if (from == this)
            {
                return;
            }

            Clear();
            MergeFrom(from);
        }
예제 #2
0
        public void MergeFrom(player_profile_info_req from)
        {
            if (from == this)
            {
                return;
            }

            // playerNo
            SetPlayerNo(from.GetPlayerNo());
        }
예제 #3
0
 public player_profile_info_req(player_profile_info_req from)
 {
     MergeFrom(from);
 }