summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleTimeState.cs
blob: e9e628d632fd27a830df6f82fde69a7d4cec6d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
	}
}