diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/DEProgressState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/DEProgressState.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/DEProgressState.cs b/Client/Assets/Scripts/XMainClient/KKSG/DEProgressState.cs new file mode 100644 index 00000000..a34cd4ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/DEProgressState.cs @@ -0,0 +1,16 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "DEProgressState")]
+ public enum DEProgressState
+ {
+ [ProtoEnum(Name = "DEPS_FINISH", Value = 1)]
+ DEPS_FINISH = 1,
+ [ProtoEnum(Name = "DEPS_FIGHT", Value = 2)]
+ DEPS_FIGHT,
+ [ProtoEnum(Name = "DEPS_NOTOPEN", Value = 3)]
+ DEPS_NOTOPEN
+ }
+}
|