summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/ActOpenState.cs
blob: b0c25ebc58d7a3bc0d3372f65dd0e0d2e6dfa154 (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 = "ActOpenState")]
	public enum ActOpenState
	{
		[ProtoEnum(Name = "ActOpenState_NotOpen", Value = 1)]
		ActOpenState_NotOpen = 1,
		[ProtoEnum(Name = "ActOpenState_Prepare", Value = 2)]
		ActOpenState_Prepare,
		[ProtoEnum(Name = "ActOpenState_Running", Value = 3)]
		ActOpenState_Running,
		[ProtoEnum(Name = "ActOpenState_Over", Value = 4)]
		ActOpenState_Over
	}
}