summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/OutLookStateType.cs
blob: e72d85175439c0e97de67d6abdbf06a63228f232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "OutLookStateType")]
	public enum OutLookStateType
	{
		[ProtoEnum(Name = "OutLook_Normal", Value = 0)]
		OutLook_Normal,
		[ProtoEnum(Name = "OutLook_Sit", Value = 1)]
		OutLook_Sit,
		[ProtoEnum(Name = "OutLook_Dance", Value = 2)]
		OutLook_Dance,
		[ProtoEnum(Name = "OutLook_RidePet", Value = 3)]
		OutLook_RidePet,
		[ProtoEnum(Name = "OutLook_Inherit", Value = 4)]
		OutLook_Inherit,
		[ProtoEnum(Name = "OutLook_Fish", Value = 5)]
		OutLook_Fish,
		[ProtoEnum(Name = "OutLook_RidePetCopilot", Value = 6)]
		OutLook_RidePetCopilot,
		[ProtoEnum(Name = "OutLook_Trans", Value = 7)]
		OutLook_Trans
	}
}