summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/EPartType.cs
blob: 2741c91a9968bf78d4fe03a135ca5a4f64eb2a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;

namespace XUtliPoolLib
{
	public enum EPartType
	{
		ECombinePartStart,
		EFace = 0,
		EHair,
		EUpperBody,
		ELowerBody,
		EGloves,
		EBoots,
		ESecondaryWeapon,
		EHeadgear,
		ECombinePartEnd,
		EMainWeapon = 8,
		EWeaponEnd,
		EWings = 9,
		ETail,
		ESprite,
		EMountEnd,
		EDecal = 12,
		ENum
	}
}