Minecraft-Console-Client/MinecraftClient/Inventory/Hand.cs

11 lines
192 B
C#

namespace MinecraftClient.Inventory
{
/// <summary>
/// Represents a Minecraft hand
/// </summary>
public enum Hand
{
MainHand = 0,
OffHand = 1,
}
}