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

namespace KKSG
{
	[ProtoContract(Name = "LeagueBattleReqType")]
	public enum LeagueBattleReqType
	{
		[ProtoEnum(Name = "LBReqType_Match", Value = 1)]
		LBReqType_Match = 1,
		[ProtoEnum(Name = "LBReqType_CancelMatch", Value = 2)]
		LBReqType_CancelMatch
	}
}