diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GetJadeSealAllInfoArg.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/GetJadeSealAllInfoArg.cs | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GetJadeSealAllInfoArg.cs b/Client/Assets/Scripts/XMainClient/KKSG/GetJadeSealAllInfoArg.cs new file mode 100644 index 00000000..14021347 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GetJadeSealAllInfoArg.cs @@ -0,0 +1,62 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "GetJadeSealAllInfoArg")]
+ [Serializable]
+ public class GetJadeSealAllInfoArg : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "equipPos", DataFormat = DataFormat.TwosComplement)]
+ public int equipPos
+ {
+ get
+ {
+ return this._equipPos ?? 0;
+ }
+ set
+ {
+ this._equipPos = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool equipPosSpecified
+ {
+ get
+ {
+ return this._equipPos != null;
+ }
+ set
+ {
+ bool flag = value == (this._equipPos == null);
+ if (flag)
+ {
+ this._equipPos = (value ? new int?(this.equipPos) : null);
+ }
+ }
+ }
+
+ private int? _equipPos;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeequipPos()
+ {
+ return this.equipPosSpecified;
+ }
+
+ private void ResetequipPos()
+ {
+ this.equipPosSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|