public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (fortressStatistics_ == null)
                    {
                        FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
                    }
                    input.ReadMessage(FortressStatistics);
                    break;
                }

                case 16: {
                    TempNextAddPtsTimestampMs = input.ReadInt64();
                    break;
                }
                }
            }
        }
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 8: {
                    Result = (global::WUProtos.Networking.Responses.ContributeFlooPowderToFortressResponse.Types.Result)input.ReadEnum();
                    break;
                }

                case 18: {
                    if (fortressStatistics_ == null)
                    {
                        FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
                    }
                    input.ReadMessage(FortressStatistics);
                    break;
                }
                }
            }
        }
Пример #3
0
 public void MergeFrom(DbgSetTeamFlooPointsResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.fortressStatistics_ != null)
     {
         if (fortressStatistics_ == null)
         {
             FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
         }
         FortressStatistics.MergeFrom(other.FortressStatistics);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
 public void MergeFrom(GetFortressFlooNetworkStatisticsResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.fortressStatistics_ != null)
     {
         if (fortressStatistics_ == null)
         {
             FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
         }
         FortressStatistics.MergeFrom(other.FortressStatistics);
     }
     if (other.TempNextAddPtsTimestampMs != 0L)
     {
         TempNextAddPtsTimestampMs = other.TempNextAddPtsTimestampMs;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
 public void MergeFrom(ContributeFlooPowderToFortressResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Result != 0)
     {
         Result = other.Result;
     }
     if (other.fortressStatistics_ != null)
     {
         if (fortressStatistics_ == null)
         {
             FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
         }
         FortressStatistics.MergeFrom(other.FortressStatistics);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }