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

namespace KKSG
{
	[ProtoContract(Name = "PkResultType")]
	public enum PkResultType
	{
		[ProtoEnum(Name = "PkResult_Win", Value = 1)]
		PkResult_Win = 1,
		[ProtoEnum(Name = "PkResult_Lose", Value = 2)]
		PkResult_Lose,
		[ProtoEnum(Name = "PkResult_Draw", Value = 3)]
		PkResult_Draw
	}
}