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

namespace KKSG
{
	[ProtoContract(Name = "OutLookType")]
	public enum OutLookType
	{
		[ProtoEnum(Name = "OutLook_Fashion", Value = 0)]
		OutLook_Fashion,
		[ProtoEnum(Name = "OutLook_Equip", Value = 1)]
		OutLook_Equip
	}
}