mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 01:26:31 +00:00
14 lines
266 B
C#
14 lines
266 B
C#
namespace PckStudio.Core.Skin
|
|
{
|
|
/// <summary>
|
|
/// For usage see <see cref="SkinArmorFlags"/>
|
|
/// </summary>
|
|
public enum SkinArmorFlagsFlag : int
|
|
{
|
|
HELMET = 0, // 0x01
|
|
CHESTPLATE = 1, // 0x02
|
|
LEGGINGS = 2, // 0x04
|
|
BOOTS = 3, // 0x08
|
|
}
|
|
}
|