diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs b/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs new file mode 100644 index 00000000..e9e628d6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs @@ -0,0 +1,28 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "LeagueBattleTimeState")]
+ public enum LeagueBattleTimeState
+ {
+ [ProtoEnum(Name = "LBTS_BeforeOpen", Value = 1)]
+ LBTS_BeforeOpen = 1,
+ [ProtoEnum(Name = "LBTS_Apply", Value = 2)]
+ LBTS_Apply,
+ [ProtoEnum(Name = "LBTS_Idle", Value = 3)]
+ LBTS_Idle,
+ [ProtoEnum(Name = "LBTS_PointRace", Value = 4)]
+ LBTS_PointRace,
+ [ProtoEnum(Name = "LBTS_Elimination", Value = 5)]
+ LBTS_Elimination,
+ [ProtoEnum(Name = "LBTS_CrossIdle", Value = 6)]
+ LBTS_CrossIdle,
+ [ProtoEnum(Name = "LBTS_CrossPointRace", Value = 7)]
+ LBTS_CrossPointRace,
+ [ProtoEnum(Name = "LBTS_CrossElimination", Value = 8)]
+ LBTS_CrossElimination,
+ [ProtoEnum(Name = "LBTS_SeasonEnd", Value = 9)]
+ LBTS_SeasonEnd
+ }
+}
|