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

namespace KKSG
{
	[ProtoContract(Name = "MarriagePos")]
	public enum MarriagePos
	{
		[ProtoEnum(Name = "MarriagePos_Null", Value = 1)]
		MarriagePos_Null = 1,
		[ProtoEnum(Name = "MarriagePos_Husband", Value = 2)]
		MarriagePos_Husband,
		[ProtoEnum(Name = "MarriagePos_Wife", Value = 3)]
		MarriagePos_Wife,
		[ProtoEnum(Name = "Marriage_Max", Value = 4)]
		Marriage_Max
	}
}