diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/synGuildInheritExp.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/synGuildInheritExp.cs | 320 |
1 files changed, 320 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/synGuildInheritExp.cs b/Client/Assets/Scripts/XMainClient/KKSG/synGuildInheritExp.cs new file mode 100644 index 00000000..03b19ccb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/synGuildInheritExp.cs @@ -0,0 +1,320 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "synGuildInheritExp")]
+ [Serializable]
+ public class synGuildInheritExp : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "roleOne", DataFormat = DataFormat.TwosComplement)]
+ public ulong roleOne
+ {
+ get
+ {
+ return this._roleOne ?? 0UL;
+ }
+ set
+ {
+ this._roleOne = new ulong?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool roleOneSpecified
+ {
+ get
+ {
+ return this._roleOne != null;
+ }
+ set
+ {
+ bool flag = value == (this._roleOne == null);
+ if (flag)
+ {
+ this._roleOne = (value ? new ulong?(this.roleOne) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "expOne", DataFormat = DataFormat.TwosComplement)]
+ public uint expOne
+ {
+ get
+ {
+ return this._expOne ?? 0u;
+ }
+ set
+ {
+ this._expOne = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool expOneSpecified
+ {
+ get
+ {
+ return this._expOne != null;
+ }
+ set
+ {
+ bool flag = value == (this._expOne == null);
+ if (flag)
+ {
+ this._expOne = (value ? new uint?(this.expOne) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "roleTwo", DataFormat = DataFormat.TwosComplement)]
+ public ulong roleTwo
+ {
+ get
+ {
+ return this._roleTwo ?? 0UL;
+ }
+ set
+ {
+ this._roleTwo = new ulong?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool roleTwoSpecified
+ {
+ get
+ {
+ return this._roleTwo != null;
+ }
+ set
+ {
+ bool flag = value == (this._roleTwo == null);
+ if (flag)
+ {
+ this._roleTwo = (value ? new ulong?(this.roleTwo) : null);
+ }
+ }
+ }
+
+ [ProtoMember(4, IsRequired = false, Name = "expTwo", DataFormat = DataFormat.TwosComplement)]
+ public uint expTwo
+ {
+ get
+ {
+ return this._expTwo ?? 0u;
+ }
+ set
+ {
+ this._expTwo = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool expTwoSpecified
+ {
+ get
+ {
+ return this._expTwo != null;
+ }
+ set
+ {
+ bool flag = value == (this._expTwo == null);
+ if (flag)
+ {
+ this._expTwo = (value ? new uint?(this.expTwo) : null);
+ }
+ }
+ }
+
+ [ProtoMember(5, IsRequired = false, Name = "turn", DataFormat = DataFormat.TwosComplement)]
+ public uint turn
+ {
+ get
+ {
+ return this._turn ?? 0u;
+ }
+ set
+ {
+ this._turn = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool turnSpecified
+ {
+ get
+ {
+ return this._turn != null;
+ }
+ set
+ {
+ bool flag = value == (this._turn == null);
+ if (flag)
+ {
+ this._turn = (value ? new uint?(this.turn) : null);
+ }
+ }
+ }
+
+ [ProtoMember(6, IsRequired = false, Name = "islast", DataFormat = DataFormat.Default)]
+ public bool islast
+ {
+ get
+ {
+ return this._islast ?? false;
+ }
+ set
+ {
+ this._islast = new bool?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool islastSpecified
+ {
+ get
+ {
+ return this._islast != null;
+ }
+ set
+ {
+ bool flag = value == (this._islast == null);
+ if (flag)
+ {
+ this._islast = (value ? new bool?(this.islast) : null);
+ }
+ }
+ }
+
+ [ProtoMember(7, IsRequired = false, Name = "teacherId", DataFormat = DataFormat.TwosComplement)]
+ public ulong teacherId
+ {
+ get
+ {
+ return this._teacherId ?? 0UL;
+ }
+ set
+ {
+ this._teacherId = new ulong?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool teacherIdSpecified
+ {
+ get
+ {
+ return this._teacherId != null;
+ }
+ set
+ {
+ bool flag = value == (this._teacherId == null);
+ if (flag)
+ {
+ this._teacherId = (value ? new ulong?(this.teacherId) : null);
+ }
+ }
+ }
+
+ private ulong? _roleOne;
+
+ private uint? _expOne;
+
+ private ulong? _roleTwo;
+
+ private uint? _expTwo;
+
+ private uint? _turn;
+
+ private bool? _islast;
+
+ private ulong? _teacherId;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeroleOne()
+ {
+ return this.roleOneSpecified;
+ }
+
+ private void ResetroleOne()
+ {
+ this.roleOneSpecified = false;
+ }
+
+ private bool ShouldSerializeexpOne()
+ {
+ return this.expOneSpecified;
+ }
+
+ private void ResetexpOne()
+ {
+ this.expOneSpecified = false;
+ }
+
+ private bool ShouldSerializeroleTwo()
+ {
+ return this.roleTwoSpecified;
+ }
+
+ private void ResetroleTwo()
+ {
+ this.roleTwoSpecified = false;
+ }
+
+ private bool ShouldSerializeexpTwo()
+ {
+ return this.expTwoSpecified;
+ }
+
+ private void ResetexpTwo()
+ {
+ this.expTwoSpecified = false;
+ }
+
+ private bool ShouldSerializeturn()
+ {
+ return this.turnSpecified;
+ }
+
+ private void Resetturn()
+ {
+ this.turnSpecified = false;
+ }
+
+ private bool ShouldSerializeislast()
+ {
+ return this.islastSpecified;
+ }
+
+ private void Resetislast()
+ {
+ this.islastSpecified = false;
+ }
+
+ private bool ShouldSerializeteacherId()
+ {
+ return this.teacherIdSpecified;
+ }
+
+ private void ResetteacherId()
+ {
+ this.teacherIdSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|