From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs | 191 +++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs b/Client/Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs new file mode 100644 index 00000000..1380298c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/NpcLikeItem.cs @@ -0,0 +1,191 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "NpcLikeItem")] + [Serializable] + public class NpcLikeItem : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "itemid", DataFormat = DataFormat.TwosComplement)] + public uint itemid + { + get + { + return this._itemid ?? 0u; + } + set + { + this._itemid = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool itemidSpecified + { + get + { + return this._itemid != null; + } + set + { + bool flag = value == (this._itemid == null); + if (flag) + { + this._itemid = (value ? new uint?(this.itemid) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "itemcount", DataFormat = DataFormat.TwosComplement)] + public uint itemcount + { + get + { + return this._itemcount ?? 0u; + } + set + { + this._itemcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool itemcountSpecified + { + get + { + return this._itemcount != null; + } + set + { + bool flag = value == (this._itemcount == null); + if (flag) + { + this._itemcount = (value ? new uint?(this.itemcount) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "addexp", DataFormat = DataFormat.TwosComplement)] + public uint addexp + { + get + { + return this._addexp ?? 0u; + } + set + { + this._addexp = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool addexpSpecified + { + get + { + return this._addexp != null; + } + set + { + bool flag = value == (this._addexp == null); + if (flag) + { + this._addexp = (value ? new uint?(this.addexp) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "type", DataFormat = DataFormat.TwosComplement)] + public NpcFlItemType type + { + get + { + return this._type ?? NpcFlItemType.NPCFL_ITEM_NORMAL; + } + set + { + this._type = new NpcFlItemType?(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 NpcFlItemType?(this.type) : null); + } + } + } + + private uint? _itemid; + + private uint? _itemcount; + + private uint? _addexp; + + private NpcFlItemType? _type; + + private IExtension extensionObject; + + private bool ShouldSerializeitemid() + { + return this.itemidSpecified; + } + + private void Resetitemid() + { + this.itemidSpecified = false; + } + + private bool ShouldSerializeitemcount() + { + return this.itemcountSpecified; + } + + private void Resetitemcount() + { + this.itemcountSpecified = false; + } + + private bool ShouldSerializeaddexp() + { + return this.addexpSpecified; + } + + private void Resetaddexp() + { + this.addexpSpecified = false; + } + + private bool ShouldSerializetype() + { + return this.typeSpecified; + } + + private void Resettype() + { + this.typeSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0