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

namespace KKSG
{
	[ProtoContract(Name = "SkyCraftMatchReqTpe")]
	public enum SkyCraftMatchReqTpe
	{
		[ProtoEnum(Name = "SCMR_Match", Value = 1)]
		SCMR_Match = 1,
		[ProtoEnum(Name = "SCMR_CancelMatch", Value = 2)]
		SCMR_CancelMatch
	}
}