namespace Cyber.Items { /// /// Represents an slot where an item can be equipped. /// public enum EquipSlot : byte { /// /// On top of the head /// Hat, /// /// Right hand /// RightHand, /// /// Left hand /// LeftHand } }