summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/GCFG2CSynType.cs
blob: 45cafc3cb7d43d5a5ea37c27c0deb059482337b7 (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 = "GCFG2CSynType")]
	public enum GCFG2CSynType
	{
		[ProtoEnum(Name = "GCF_G2C_SYN_KILL_ONE", Value = 1)]
		GCF_G2C_SYN_KILL_ONE = 1,
		[ProtoEnum(Name = "GCF_G2C_SYN_MUL_POINT", Value = 2)]
		GCF_G2C_SYN_MUL_POINT,
		[ProtoEnum(Name = "GCF_G2C_SYN_OCCUPY", Value = 3)]
		GCF_G2C_SYN_OCCUPY,
		[ProtoEnum(Name = "GCF_G2C_SYN_KILL_COUNT", Value = 4)]
		GCF_G2C_SYN_KILL_COUNT
	}
}