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

namespace KKSG
{
	[ProtoContract(Name = "SynsMsType")]
	public enum SynsMsType
	{
		[ProtoEnum(Name = "SynsGuild", Value = 1)]
		SynsGuild = 1,
		[ProtoEnum(Name = "SynsTeam", Value = 2)]
		SynsTeam
	}
}