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