// // Generated by the protocol buffer compiler. DO NOT EDIT! // source: LobbyModifyPlayerInfoCsReq.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 LobbyModifyPlayerInfoCsReq.proto public static partial class LobbyModifyPlayerInfoCsReqReflection { #region Descriptor /// File descriptor for LobbyModifyPlayerInfoCsReq.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; static LobbyModifyPlayerInfoCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiBMb2JieU1vZGlmeVBsYXllckluZm9Dc1JlcS5wcm90bxoVTG9iYnlNb2Rp", "ZnlUeXBlLnByb3RvGhNMb2JieUdhbWVJbmZvLnByb3RvInoKGkxvYmJ5TW9k", "aWZ5UGxheWVySW5mb0NzUmVxEicKD2xvYmJ5X2dhbWVfaW5mbxgBIAEoCzIO", "LkxvYmJ5R2FtZUluZm8SHgoEdHlwZRgIIAEoDjIQLkxvYmJ5TW9kaWZ5VHlw", "ZRITCgtIRkRKQUVMQk5HQRgCIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LobbyModifyTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LobbyGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LobbyModifyPlayerInfoCsReq), global::EggLink.DanhengServer.Proto.LobbyModifyPlayerInfoCsReq.Parser, new[]{ "LobbyGameInfo", "Type", "HFDJAELBNGA" }, null, null, null, null) })); } #endregion } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] public sealed partial class LobbyModifyPlayerInfoCsReq : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new LobbyModifyPlayerInfoCsReq()); 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.LobbyModifyPlayerInfoCsReqReflection.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 LobbyModifyPlayerInfoCsReq() { OnConstruction(); } partial void OnConstruction(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public LobbyModifyPlayerInfoCsReq(LobbyModifyPlayerInfoCsReq other) : this() { lobbyGameInfo_ = other.lobbyGameInfo_ != null ? other.lobbyGameInfo_.Clone() : null; type_ = other.type_; hFDJAELBNGA_ = other.hFDJAELBNGA_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public LobbyModifyPlayerInfoCsReq Clone() { return new LobbyModifyPlayerInfoCsReq(this); } /// Field number for the "lobby_game_info" field. public const int LobbyGameInfoFieldNumber = 1; private global::EggLink.DanhengServer.Proto.LobbyGameInfo lobbyGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public global::EggLink.DanhengServer.Proto.LobbyGameInfo LobbyGameInfo { get { return lobbyGameInfo_; } set { lobbyGameInfo_ = value; } } /// Field number for the "type" field. public const int TypeFieldNumber = 8; private global::EggLink.DanhengServer.Proto.LobbyModifyType type_ = global::EggLink.DanhengServer.Proto.LobbyModifyType.None; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public global::EggLink.DanhengServer.Proto.LobbyModifyType Type { get { return type_; } set { type_ = value; } } /// Field number for the "HFDJAELBNGA" field. public const int HFDJAELBNGAFieldNumber = 2; private uint hFDJAELBNGA_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public uint HFDJAELBNGA { get { return hFDJAELBNGA_; } set { hFDJAELBNGA_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { return Equals(other as LobbyModifyPlayerInfoCsReq); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public bool Equals(LobbyModifyPlayerInfoCsReq other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } if (!object.Equals(LobbyGameInfo, other.LobbyGameInfo)) return false; if (Type != other.Type) return false; if (HFDJAELBNGA != other.HFDJAELBNGA) 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 (lobbyGameInfo_ != null) hash ^= LobbyGameInfo.GetHashCode(); if (Type != global::EggLink.DanhengServer.Proto.LobbyModifyType.None) hash ^= Type.GetHashCode(); if (HFDJAELBNGA != 0) hash ^= HFDJAELBNGA.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 (lobbyGameInfo_ != null) { output.WriteRawTag(10); output.WriteMessage(LobbyGameInfo); } if (HFDJAELBNGA != 0) { output.WriteRawTag(16); output.WriteUInt32(HFDJAELBNGA); } if (Type != global::EggLink.DanhengServer.Proto.LobbyModifyType.None) { output.WriteRawTag(64); output.WriteEnum((int) Type); } 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 (lobbyGameInfo_ != null) { output.WriteRawTag(10); output.WriteMessage(LobbyGameInfo); } if (HFDJAELBNGA != 0) { output.WriteRawTag(16); output.WriteUInt32(HFDJAELBNGA); } if (Type != global::EggLink.DanhengServer.Proto.LobbyModifyType.None) { output.WriteRawTag(64); output.WriteEnum((int) Type); } 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 (lobbyGameInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(LobbyGameInfo); } if (Type != global::EggLink.DanhengServer.Proto.LobbyModifyType.None) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Type); } if (HFDJAELBNGA != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HFDJAELBNGA); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } return size; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void MergeFrom(LobbyModifyPlayerInfoCsReq other) { if (other == null) { return; } if (other.lobbyGameInfo_ != null) { if (lobbyGameInfo_ == null) { LobbyGameInfo = new global::EggLink.DanhengServer.Proto.LobbyGameInfo(); } LobbyGameInfo.MergeFrom(other.LobbyGameInfo); } if (other.Type != global::EggLink.DanhengServer.Proto.LobbyModifyType.None) { Type = other.Type; } if (other.HFDJAELBNGA != 0) { HFDJAELBNGA = other.HFDJAELBNGA; } _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 10: { if (lobbyGameInfo_ == null) { LobbyGameInfo = new global::EggLink.DanhengServer.Proto.LobbyGameInfo(); } input.ReadMessage(LobbyGameInfo); break; } case 16: { HFDJAELBNGA = input.ReadUInt32(); break; } case 64: { Type = (global::EggLink.DanhengServer.Proto.LobbyModifyType) input.ReadEnum(); 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 10: { if (lobbyGameInfo_ == null) { LobbyGameInfo = new global::EggLink.DanhengServer.Proto.LobbyGameInfo(); } input.ReadMessage(LobbyGameInfo); break; } case 16: { HFDJAELBNGA = input.ReadUInt32(); break; } case 64: { Type = (global::EggLink.DanhengServer.Proto.LobbyModifyType) input.ReadEnum(); break; } } } } #endif } #endregion } #endregion Designer generated code