Example #1
0
 public void MergeFrom(GameplayWeather other)
 {
     if (other == null)
     {
         return;
     }
     if (other.GameplayCondition != 0)
     {
         GameplayCondition = other.GameplayCondition;
     }
 }
 public void MergeFrom(GameplayWeather other)
 {
     if (other == null)
     {
         return;
     }
     if (other.GameplayCondition != 0)
     {
         GameplayCondition = other.GameplayCondition;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Example #3
0
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 8: {
                    gameplayCondition_ = (global::POGOProtos.Map.Weather.GameplayWeather.Types.WeatherCondition)input.ReadEnum();
                    break;
                }
                }
            }
        }