コード例 #1
0
        public void CopyFrom(reward_station_info from)
        {
            if (from == this)
            {
                return;
            }

            Clear();
            MergeFrom(from);
        }
コード例 #2
0
        public void MergeFrom(reward_station_info from)
        {
            if (from == this)
            {
                return;
            }

            // videoAd
            SetVideoAd(from.GetVideoAd());
            // nextVideoAdTime
            SetNextVideoAdTime(from.GetNextVideoAdTime());
            // fbPost
            SetFbPost(from.GetFbPost());
            // nextFbPost
            SetNextFbPost(from.GetNextFbPost());
            // fbInvite
            SetFbInvite(from.GetFbInvite());
            // goldBonus
            SetGoldBonus(from.GetGoldBonus());
            // nextGoldBonus
            SetNextGoldBonus(from.GetNextGoldBonus());
        }
コード例 #3
0
 public void SetInfo(reward_station_info value)
 {
     info_ = value;
 }
コード例 #4
0
 public reward_station_info(reward_station_info from)
 {
     MergeFrom(from);
 }