summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs105
1 files changed, 105 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs b/Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs
new file mode 100644
index 00000000..10e0798f
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/IdipHintData.cs
@@ -0,0 +1,105 @@
+using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "IdipHintData")]
+ [Serializable]
+ public class IdipHintData : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "systemid", DataFormat = DataFormat.TwosComplement)]
+ public uint systemid
+ {
+ get
+ {
+ return this._systemid ?? 0u;
+ }
+ set
+ {
+ this._systemid = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool systemidSpecified
+ {
+ get
+ {
+ return this._systemid != null;
+ }
+ set
+ {
+ bool flag = value == (this._systemid == null);
+ if (flag)
+ {
+ this._systemid = (value ? new uint?(this.systemid) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "ishint", DataFormat = DataFormat.Default)]
+ public bool ishint
+ {
+ get
+ {
+ return this._ishint ?? false;
+ }
+ set
+ {
+ this._ishint = new bool?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool ishintSpecified
+ {
+ get
+ {
+ return this._ishint != null;
+ }
+ set
+ {
+ bool flag = value == (this._ishint == null);
+ if (flag)
+ {
+ this._ishint = (value ? new bool?(this.ishint) : null);
+ }
+ }
+ }
+
+ private uint? _systemid;
+
+ private bool? _ishint;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializesystemid()
+ {
+ return this.systemidSpecified;
+ }
+
+ private void Resetsystemid()
+ {
+ this.systemidSpecified = false;
+ }
+
+ private bool ShouldSerializeishint()
+ {
+ return this.ishintSpecified;
+ }
+
+ private void Resetishint()
+ {
+ this.ishintSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}