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/GuildHallBuffData.cs | 234 +++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/GuildHallBuffData.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GuildHallBuffData.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GuildHallBuffData.cs b/Client/Assets/Scripts/XMainClient/KKSG/GuildHallBuffData.cs new file mode 100644 index 00000000..d4f20e8e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GuildHallBuffData.cs @@ -0,0 +1,234 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "GuildHallBuffData")] + [Serializable] + public class GuildHallBuffData : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "buffid", DataFormat = DataFormat.TwosComplement)] + public uint buffid + { + get + { + return this._buffid ?? 0u; + } + set + { + this._buffid = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool buffidSpecified + { + get + { + return this._buffid != null; + } + set + { + bool flag = value == (this._buffid == null); + if (flag) + { + this._buffid = (value ? new uint?(this.buffid) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "maxlevel", DataFormat = DataFormat.TwosComplement)] + public uint maxlevel + { + get + { + return this._maxlevel ?? 0u; + } + set + { + this._maxlevel = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool maxlevelSpecified + { + get + { + return this._maxlevel != null; + } + set + { + bool flag = value == (this._maxlevel == null); + if (flag) + { + this._maxlevel = (value ? new uint?(this.maxlevel) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "level", DataFormat = DataFormat.TwosComplement)] + public uint level + { + get + { + return this._level ?? 0u; + } + set + { + this._level = new uint?(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 uint?(this.level) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "isenable", DataFormat = DataFormat.Default)] + public bool isenable + { + get + { + return this._isenable ?? false; + } + set + { + this._isenable = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool isenableSpecified + { + get + { + return this._isenable != null; + } + set + { + bool flag = value == (this._isenable == null); + if (flag) + { + this._isenable = (value ? new bool?(this.isenable) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "dailybegintime", DataFormat = DataFormat.TwosComplement)] + public uint dailybegintime + { + get + { + return this._dailybegintime ?? 0u; + } + set + { + this._dailybegintime = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool dailybegintimeSpecified + { + get + { + return this._dailybegintime != null; + } + set + { + bool flag = value == (this._dailybegintime == null); + if (flag) + { + this._dailybegintime = (value ? new uint?(this.dailybegintime) : null); + } + } + } + + private uint? _buffid; + + private uint? _maxlevel; + + private uint? _level; + + private bool? _isenable; + + private uint? _dailybegintime; + + private IExtension extensionObject; + + private bool ShouldSerializebuffid() + { + return this.buffidSpecified; + } + + private void Resetbuffid() + { + this.buffidSpecified = false; + } + + private bool ShouldSerializemaxlevel() + { + return this.maxlevelSpecified; + } + + private void Resetmaxlevel() + { + this.maxlevelSpecified = false; + } + + private bool ShouldSerializelevel() + { + return this.levelSpecified; + } + + private void Resetlevel() + { + this.levelSpecified = false; + } + + private bool ShouldSerializeisenable() + { + return this.isenableSpecified; + } + + private void Resetisenable() + { + this.isenableSpecified = false; + } + + private bool ShouldSerializedailybegintime() + { + return this.dailybegintimeSpecified; + } + + private void Resetdailybegintime() + { + this.dailybegintimeSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0