// // Generated by the protocol buffer compiler. DO NOT EDIT! // source: BattleGridFightEquipmentInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { /// Holder for reflection information generated from BattleGridFightEquipmentInfo.proto public static partial class BattleGridFightEquipmentInfoReflection { #region Descriptor /// File descriptor for BattleGridFightEquipmentInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; static BattleGridFightEquipmentInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiJCYXR0bGVHcmlkRmlnaHRFcXVpcG1lbnRJbmZvLnByb3RvIssBChxCYXR0", "bGVHcmlkRmlnaHRFcXVpcG1lbnRJbmZvEh8KF2dyaWRfZmlnaHRfZXF1aXBt", "ZW50X2lkGAIgASgNEkMKC0lNTU5OR01NREFJGAQgAygLMi4uQmF0dGxlR3Jp", "ZEZpZ2h0RXF1aXBtZW50SW5mby5JTU1OTkdNTURBSUVudHJ5EhEKCXVuaXF1", "ZV9pZBgFIAEoDRoyChBJTU1OTkdNTURBSUVudHJ5EgsKA2tleRgBIAEoDRIN", "CgV2YWx1ZRgCIAEoDToCOAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q", "cm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleGridFightEquipmentInfo), global::EggLink.DanhengServer.Proto.BattleGridFightEquipmentInfo.Parser, new[]{ "GridFightEquipmentId", "IMMNNGMMDAI", "UniqueId" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); } #endregion } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] public sealed partial class BattleGridFightEquipmentInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BattleGridFightEquipmentInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { get { return global::EggLink.DanhengServer.Proto.BattleGridFightEquipmentInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] pbr::MessageDescriptor pb::IMessage.Descriptor { get { return Descriptor; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public BattleGridFightEquipmentInfo() { OnConstruction(); } partial void OnConstruction(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public BattleGridFightEquipmentInfo(BattleGridFightEquipmentInfo other) : this() { gridFightEquipmentId_ = other.gridFightEquipmentId_; iMMNNGMMDAI_ = other.iMMNNGMMDAI_.Clone(); uniqueId_ = other.uniqueId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public BattleGridFightEquipmentInfo Clone() { return new BattleGridFightEquipmentInfo(this); } /// Field number for the "grid_fight_equipment_id" field. public const int GridFightEquipmentIdFieldNumber = 2; private uint gridFightEquipmentId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public uint GridFightEquipmentId { get { return gridFightEquipmentId_; } set { gridFightEquipmentId_ = value; } } /// Field number for the "IMMNNGMMDAI" field. public const int IMMNNGMMDAIFieldNumber = 4; private static readonly pbc::MapField.Codec _map_iMMNNGMMDAI_codec = new pbc::MapField.Codec(pb::FieldCodec.ForUInt32(8, 0), pb::FieldCodec.ForUInt32(16, 0), 34); private readonly pbc::MapField iMMNNGMMDAI_ = new pbc::MapField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public pbc::MapField IMMNNGMMDAI { get { return iMMNNGMMDAI_; } } /// Field number for the "unique_id" field. public const int UniqueIdFieldNumber = 5; private uint uniqueId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public uint UniqueId { get { return uniqueId_; } set { uniqueId_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { return Equals(other as BattleGridFightEquipmentInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public bool Equals(BattleGridFightEquipmentInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } if (GridFightEquipmentId != other.GridFightEquipmentId) return false; if (!IMMNNGMMDAI.Equals(other.IMMNNGMMDAI)) return false; if (UniqueId != other.UniqueId) return false; return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; if (GridFightEquipmentId != 0) hash ^= GridFightEquipmentId.GetHashCode(); hash ^= IMMNNGMMDAI.GetHashCode(); if (UniqueId != 0) hash ^= UniqueId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } return hash; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override string ToString() { return pb::JsonFormatter.ToDiagnosticString(this); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void WriteTo(pb::CodedOutputStream output) { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else if (GridFightEquipmentId != 0) { output.WriteRawTag(16); output.WriteUInt32(GridFightEquipmentId); } iMMNNGMMDAI_.WriteTo(output, _map_iMMNNGMMDAI_codec); if (UniqueId != 0) { output.WriteRawTag(40); output.WriteUInt32(UniqueId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); } #endif } #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { if (GridFightEquipmentId != 0) { output.WriteRawTag(16); output.WriteUInt32(GridFightEquipmentId); } iMMNNGMMDAI_.WriteTo(ref output, _map_iMMNNGMMDAI_codec); if (UniqueId != 0) { output.WriteRawTag(40); output.WriteUInt32(UniqueId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } } #endif [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; if (GridFightEquipmentId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GridFightEquipmentId); } size += iMMNNGMMDAI_.CalculateSize(_map_iMMNNGMMDAI_codec); if (UniqueId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(UniqueId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } return size; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void MergeFrom(BattleGridFightEquipmentInfo other) { if (other == null) { return; } if (other.GridFightEquipmentId != 0) { GridFightEquipmentId = other.GridFightEquipmentId; } iMMNNGMMDAI_.MergeFrom(other.iMMNNGMMDAI_); if (other.UniqueId != 0) { UniqueId = other.UniqueId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void MergeFrom(pb::CodedInputStream input) { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE input.ReadRawMessage(this); #else uint tag; while ((tag = input.ReadTag()) != 0) { switch(tag) { default: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 16: { GridFightEquipmentId = input.ReadUInt32(); break; } case 34: { iMMNNGMMDAI_.AddEntriesFrom(input, _map_iMMNNGMMDAI_codec); break; } case 40: { UniqueId = input.ReadUInt32(); break; } } } #endif } #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) { uint tag; while ((tag = input.ReadTag()) != 0) { switch(tag) { default: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 16: { GridFightEquipmentId = input.ReadUInt32(); break; } case 34: { iMMNNGMMDAI_.AddEntriesFrom(ref input, _map_iMMNNGMMDAI_codec); break; } case 40: { UniqueId = input.ReadUInt32(); break; } } } } #endif } #endregion } #endregion Designer generated code