From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/LeagueBattleTimeState.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs') 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 + } +} -- cgit v1.1-26-g67d0