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

namespace KKSG
{
	[ProtoContract(Name = "TableDef")]
	public enum TableDef
	{
		[ProtoEnum(Name = "AccountTable", Value = 1)]
		AccountTable = 1,
		[ProtoEnum(Name = "RoleTable", Value = 2)]
		RoleTable
	}
}