summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/LeagueTeamState.cs
blob: d852b016c06dae2d7e2cfcd6c5e9f0ba8a317b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "LeagueTeamState")]
	public enum LeagueTeamState
	{
		[ProtoEnum(Name = "LeagueTeamState_Idle", Value = 1)]
		LeagueTeamState_Idle = 1,
		[ProtoEnum(Name = "LeagueTeamState_Match", Value = 2)]
		LeagueTeamState_Match,
		[ProtoEnum(Name = "LeagueTeamState_Battle", Value = 3)]
		LeagueTeamState_Battle
	}
}