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

namespace KKSG
{
	[ProtoContract(Name = "WeddingState")]
	public enum WeddingState
	{
		[ProtoEnum(Name = "WeddingState_Prepare", Value = 1)]
		WeddingState_Prepare = 1,
		[ProtoEnum(Name = "WeddingState_Running", Value = 2)]
		WeddingState_Running
	}
}