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