LeviLamina
Loading...
Searching...
No Matches
ArmorSlot.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SharedTypes::Legacy {
6
7enum class ArmorSlot : int {
8 Head = 0,
9 Torso = 1,
10 Legs = 2,
11 Feet = 3,
12 Body = 4,
13 HumanoidCount = 4,
14 Count = 5,
15};
16
17}