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/DragonRecord2DB.cs | 160 +++++++++++++++++++++ 1 file changed, 160 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/DragonRecord2DB.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/DragonRecord2DB.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/DragonRecord2DB.cs b/Client/Assets/Scripts/XMainClient/KKSG/DragonRecord2DB.cs new file mode 100644 index 00000000..2e6f99df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/DragonRecord2DB.cs @@ -0,0 +1,160 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "DragonRecord2DB")] + [Serializable] + public class DragonRecord2DB : IExtensible + { + [ProtoMember(1, Name = "record", DataFormat = DataFormat.Default)] + public List record + { + get + { + return this._record; + } + } + + [ProtoMember(2, IsRequired = false, Name = "updateDay", DataFormat = DataFormat.TwosComplement)] + public int updateDay + { + get + { + return this._updateDay ?? 0; + } + set + { + this._updateDay = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool updateDaySpecified + { + get + { + return this._updateDay != null; + } + set + { + bool flag = value == (this._updateDay == null); + if (flag) + { + this._updateDay = (value ? new int?(this.updateDay) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "updateHardDragonDay", DataFormat = DataFormat.TwosComplement)] + public int updateHardDragonDay + { + get + { + return this._updateHardDragonDay ?? 0; + } + set + { + this._updateHardDragonDay = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool updateHardDragonDaySpecified + { + get + { + return this._updateHardDragonDay != null; + } + set + { + bool flag = value == (this._updateHardDragonDay == null); + if (flag) + { + this._updateHardDragonDay = (value ? new int?(this.updateHardDragonDay) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "updateSmallDragonDay", DataFormat = DataFormat.TwosComplement)] + public int updateSmallDragonDay + { + get + { + return this._updateSmallDragonDay ?? 0; + } + set + { + this._updateSmallDragonDay = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool updateSmallDragonDaySpecified + { + get + { + return this._updateSmallDragonDay != null; + } + set + { + bool flag = value == (this._updateSmallDragonDay == null); + if (flag) + { + this._updateSmallDragonDay = (value ? new int?(this.updateSmallDragonDay) : null); + } + } + } + + private readonly List _record = new List(); + + private int? _updateDay; + + private int? _updateHardDragonDay; + + private int? _updateSmallDragonDay; + + private IExtension extensionObject; + + private bool ShouldSerializeupdateDay() + { + return this.updateDaySpecified; + } + + private void ResetupdateDay() + { + this.updateDaySpecified = false; + } + + private bool ShouldSerializeupdateHardDragonDay() + { + return this.updateHardDragonDaySpecified; + } + + private void ResetupdateHardDragonDay() + { + this.updateHardDragonDaySpecified = false; + } + + private bool ShouldSerializeupdateSmallDragonDay() + { + return this.updateSmallDragonDaySpecified; + } + + private void ResetupdateSmallDragonDay() + { + this.updateSmallDragonDaySpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0