diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/FatigueRecoverTimeInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/FatigueRecoverTimeInfo.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/FatigueRecoverTimeInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/FatigueRecoverTimeInfo.cs new file mode 100644 index 00000000..cd934325 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/FatigueRecoverTimeInfo.cs @@ -0,0 +1,40 @@ +using System;
+using System.Collections.Generic;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "FatigueRecoverTimeInfo")]
+ [Serializable]
+ public class FatigueRecoverTimeInfo : IExtensible
+ {
+ [ProtoMember(1, Name = "fatigueID", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> fatigueID
+ {
+ get
+ {
+ return this._fatigueID;
+ }
+ }
+
+ [ProtoMember(2, Name = "timeleft", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> timeleft
+ {
+ get
+ {
+ return this._timeleft;
+ }
+ }
+
+ private readonly List<uint> _fatigueID = new List<uint>();
+
+ private readonly List<uint> _timeleft = new List<uint>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|