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

namespace KKSG
{
	[ProtoContract(Name = "GmfBattleState")]
	public enum GmfBattleState
	{
		[ProtoEnum(Name = "GMF_BS_NONE", Value = 4)]
		GMF_BS_NONE = 4,
		[ProtoEnum(Name = "GMF_BS_WAIT", Value = 1)]
		GMF_BS_WAIT = 1,
		[ProtoEnum(Name = "GMF_BS_FIGHT", Value = 2)]
		GMF_BS_FIGHT,
		[ProtoEnum(Name = "GMF_BS_RESULT", Value = 3)]
		GMF_BS_RESULT
	}
}