summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs
blob: 368ea23031bdfa000092765945cbeb31e61f6a3b (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 = "EntityCategory")]
	public enum EntityCategory
	{
		[ProtoEnum(Name = "Category_Role", Value = 0)]
		Category_Role,
		[ProtoEnum(Name = "Category_Enemy", Value = 1)]
		Category_Enemy,
		[ProtoEnum(Name = "Category_Neutral", Value = 2)]
		Category_Neutral,
		[ProtoEnum(Name = "Category_DummyRole", Value = 3)]
		Category_DummyRole,
		[ProtoEnum(Name = "Category_Others", Value = 4)]
		Category_Others
	}
}