summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs203
1 files changed, 203 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs b/Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs
new file mode 100644
index 00000000..19531b61
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/PkRoleRec.cs
@@ -0,0 +1,203 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "PkRoleRec")]
+ [Serializable]
+ public class PkRoleRec : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "point", DataFormat = DataFormat.TwosComplement)]
+ public uint point
+ {
+ get
+ {
+ return this._point ?? 0u;
+ }
+ set
+ {
+ this._point = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool pointSpecified
+ {
+ get
+ {
+ return this._point != null;
+ }
+ set
+ {
+ bool flag = value == (this._point == null);
+ if (flag)
+ {
+ this._point = (value ? new uint?(this.point) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "win", DataFormat = DataFormat.TwosComplement)]
+ public uint win
+ {
+ get
+ {
+ return this._win ?? 0u;
+ }
+ set
+ {
+ this._win = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool winSpecified
+ {
+ get
+ {
+ return this._win != null;
+ }
+ set
+ {
+ bool flag = value == (this._win == null);
+ if (flag)
+ {
+ this._win = (value ? new uint?(this.win) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "lose", DataFormat = DataFormat.TwosComplement)]
+ public uint lose
+ {
+ get
+ {
+ return this._lose ?? 0u;
+ }
+ set
+ {
+ this._lose = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool loseSpecified
+ {
+ get
+ {
+ return this._lose != null;
+ }
+ set
+ {
+ bool flag = value == (this._lose == null);
+ if (flag)
+ {
+ this._lose = (value ? new uint?(this.lose) : null);
+ }
+ }
+ }
+
+ [ProtoMember(4, IsRequired = false, Name = "draw", DataFormat = DataFormat.TwosComplement)]
+ public uint draw
+ {
+ get
+ {
+ return this._draw ?? 0u;
+ }
+ set
+ {
+ this._draw = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool drawSpecified
+ {
+ get
+ {
+ return this._draw != null;
+ }
+ set
+ {
+ bool flag = value == (this._draw == null);
+ if (flag)
+ {
+ this._draw = (value ? new uint?(this.draw) : null);
+ }
+ }
+ }
+
+ [ProtoMember(5, Name = "records", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> records
+ {
+ get
+ {
+ return this._records;
+ }
+ }
+
+ private uint? _point;
+
+ private uint? _win;
+
+ private uint? _lose;
+
+ private uint? _draw;
+
+ private readonly List<uint> _records = new List<uint>();
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializepoint()
+ {
+ return this.pointSpecified;
+ }
+
+ private void Resetpoint()
+ {
+ this.pointSpecified = false;
+ }
+
+ private bool ShouldSerializewin()
+ {
+ return this.winSpecified;
+ }
+
+ private void Resetwin()
+ {
+ this.winSpecified = false;
+ }
+
+ private bool ShouldSerializelose()
+ {
+ return this.loseSpecified;
+ }
+
+ private void Resetlose()
+ {
+ this.loseSpecified = false;
+ }
+
+ private bool ShouldSerializedraw()
+ {
+ return this.drawSpecified;
+ }
+
+ private void Resetdraw()
+ {
+ this.drawSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}