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

namespace KKSG
{
	[ProtoContract(Name = "WeddingType")]
	public enum WeddingType
	{
		[ProtoEnum(Name = "WeddingType_Normal", Value = 1)]
		WeddingType_Normal = 1,
		[ProtoEnum(Name = "WeddingType_Luxury", Value = 2)]
		WeddingType_Luxury
	}
}