Beispiel #1
0
        public void CopyFrom(update_player_profile_info_req from)
        {
            if (from == this)
            {
                return;
            }

            Clear();
            MergeFrom(from);
        }
Beispiel #2
0
        public void MergeFrom(update_player_profile_info_req from)
        {
            if (from == this)
            {
                return;
            }

            // gameNick
            SetGameNick(from.GetGameNick());
            // nationCode
            SetNationCode(from.GetNationCode());
        }
Beispiel #3
0
 public update_player_profile_info_req(update_player_profile_info_req from)
 {
     MergeFrom(from);
 }