Cyber/Assets/Scripts/Items/EquipSlot.cs

26 lines
431 B
C#

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