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

namespace KKSG
{
	[ProtoContract(Name = "WorldBossState")]
	public enum WorldBossState
	{
		[ProtoEnum(Name = "WorldBoss_BeginPre", Value = 0)]
		WorldBoss_BeginPre,
		[ProtoEnum(Name = "WorldBoss_Begin", Value = 1)]
		WorldBoss_Begin,
		[ProtoEnum(Name = "WorldBoss_Going", Value = 2)]
		WorldBoss_Going,
		[ProtoEnum(Name = "WorldBoss_WaitEnd", Value = 3)]
		WorldBoss_WaitEnd,
		[ProtoEnum(Name = "WorldBoss_End", Value = 4)]
		WorldBoss_End
	}
}