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

namespace KKSG
{
	[ProtoContract(Name = "ItemEnum")]
	public enum ItemEnum
	{
		[ProtoEnum(Name = "Virtual_Max", Value = 50)]
		Virtual_Max = 50
	}
}