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

namespace XMainClient
{
	internal enum ItemAttrCompareType
	{
		IACT_BASIC = 1,
		IACT_RANDOM,
		IACT_ENHANCE = 4,
		IACT_JADE = 8,
		IACT_FORGE = 16,
		IACT_SELF = 19,
		IACT_TOTAL = 31
	}
}