summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/PartnerUpdateType.cs
blob: 293bf831c013c983de9c911472049215f46b0238 (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 = "PartnerUpdateType")]
	public enum PartnerUpdateType
	{
		[ProtoEnum(Name = "PUType_Normal", Value = 1)]
		PUType_Normal = 1,
		[ProtoEnum(Name = "PUType_Leave", Value = 2)]
		PUType_Leave,
		[ProtoEnum(Name = "PUType_Dissolve", Value = 3)]
		PUType_Dissolve,
		[ProtoEnum(Name = "PUType_Shop", Value = 4)]
		PUType_Shop
	}
}