summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/BagType.cs
blob: 016946766ef9395f37fe31644cd3900ceb22ed2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "BagType")]
	public enum BagType
	{
		[ProtoEnum(Name = "EquipBag", Value = 1)]
		EquipBag = 1,
		[ProtoEnum(Name = "EmblemBag", Value = 2)]
		EmblemBag,
		[ProtoEnum(Name = "ArtifactBag", Value = 3)]
		ArtifactBag,
		[ProtoEnum(Name = "ItemBag", Value = 4)]
		ItemBag
	}
}