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

namespace KKSG
{
	[ProtoContract(Name = "PersonalCarrerReqType")]
	public enum PersonalCarrerReqType
	{
		[ProtoEnum(Name = "PCRT_HOME_PAGE", Value = 1)]
		PCRT_HOME_PAGE = 1,
		[ProtoEnum(Name = "PCRT_PVP_PKINFO", Value = 2)]
		PCRT_PVP_PKINFO,
		[ProtoEnum(Name = "PCRT_TROPHY", Value = 3)]
		PCRT_TROPHY
	}
}