summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/TeamMemberType.cs
blob: 2dab8b60b3e0c2168551586038c4615777823292 (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 = "TeamMemberType")]
	public enum TeamMemberType
	{
		[ProtoEnum(Name = "TMT_NORMAL", Value = 1)]
		TMT_NORMAL = 1,
		[ProtoEnum(Name = "TMT_HELPER", Value = 2)]
		TMT_HELPER,
		[ProtoEnum(Name = "TMT_USETICKET", Value = 3)]
		TMT_USETICKET
	}
}