summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/FightGroupType.cs
blob: 99fa383d7b099531e6ff7b4366dd26284d5d90cc (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 = "FightGroupType")]
	public enum FightGroupType
	{
		[ProtoEnum(Name = "FightEnemy", Value = 0)]
		FightEnemy,
		[ProtoEnum(Name = "FightRole", Value = 1)]
		FightRole,
		[ProtoEnum(Name = "FightNeutral", Value = 2)]
		FightNeutral,
		[ProtoEnum(Name = "FightHostility", Value = 3)]
		FightHostility,
		[ProtoEnum(Name = "FightDummy", Value = 10)]
		FightDummy = 10
	}
}