From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/RoleBriefInfo.cs | 262 +++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/RoleBriefInfo.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/RoleBriefInfo.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/RoleBriefInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/RoleBriefInfo.cs new file mode 100644 index 00000000..6ac8f605 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/RoleBriefInfo.cs @@ -0,0 +1,262 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "RoleBriefInfo")] + [Serializable] + public class RoleBriefInfo : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "type", DataFormat = DataFormat.TwosComplement)] + public RoleType type + { + get + { + return this._type ?? RoleType.Role_INVALID; + } + set + { + this._type = new RoleType?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool typeSpecified + { + get + { + return this._type != null; + } + set + { + bool flag = value == (this._type == null); + if (flag) + { + this._type = (value ? new RoleType?(this.type) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "roleID", DataFormat = DataFormat.TwosComplement)] + public ulong roleID + { + get + { + return this._roleID ?? 0UL; + } + set + { + this._roleID = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool roleIDSpecified + { + get + { + return this._roleID != null; + } + set + { + bool flag = value == (this._roleID == null); + if (flag) + { + this._roleID = (value ? new ulong?(this.roleID) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)] + public string name + { + get + { + return this._name ?? ""; + } + set + { + this._name = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool nameSpecified + { + get + { + return this._name != null; + } + set + { + bool flag = value == (this._name == null); + if (flag) + { + this._name = (value ? this.name : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "level", DataFormat = DataFormat.TwosComplement)] + public int level + { + get + { + return this._level ?? 0; + } + set + { + this._level = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool levelSpecified + { + get + { + return this._level != null; + } + set + { + bool flag = value == (this._level == null); + if (flag) + { + this._level = (value ? new int?(this.level) : null); + } + } + } + + [ProtoMember(5, Name = "fashion", DataFormat = DataFormat.TwosComplement)] + public List fashion + { + get + { + return this._fashion; + } + } + + [ProtoMember(6, IsRequired = false, Name = "outlook", DataFormat = DataFormat.Default)] + [DefaultValue(null)] + public OutLook outlook + { + get + { + return this._outlook; + } + set + { + this._outlook = value; + } + } + + [ProtoMember(7, IsRequired = false, Name = "ppt", DataFormat = DataFormat.TwosComplement)] + public uint ppt + { + get + { + return this._ppt ?? 0u; + } + set + { + this._ppt = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool pptSpecified + { + get + { + return this._ppt != null; + } + set + { + bool flag = value == (this._ppt == null); + if (flag) + { + this._ppt = (value ? new uint?(this.ppt) : null); + } + } + } + + private RoleType? _type; + + private ulong? _roleID; + + private string _name; + + private int? _level; + + private readonly List _fashion = new List(); + + private OutLook _outlook = null; + + private uint? _ppt; + + private IExtension extensionObject; + + private bool ShouldSerializetype() + { + return this.typeSpecified; + } + + private void Resettype() + { + this.typeSpecified = false; + } + + private bool ShouldSerializeroleID() + { + return this.roleIDSpecified; + } + + private void ResetroleID() + { + this.roleIDSpecified = false; + } + + private bool ShouldSerializename() + { + return this.nameSpecified; + } + + private void Resetname() + { + this.nameSpecified = false; + } + + private bool ShouldSerializelevel() + { + return this.levelSpecified; + } + + private void Resetlevel() + { + this.levelSpecified = false; + } + + private bool ShouldSerializeppt() + { + return this.pptSpecified; + } + + private void Resetppt() + { + this.pptSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0