mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
12 lines
189 B
C#
12 lines
189 B
C#
|
|
namespace MinecraftClient.Inventory
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Represents a Minecraft hand
|
||
|
|
/// </summary>
|
||
|
|
public enum Hand
|
||
|
|
{
|
||
|
|
MainHand = 0,
|
||
|
|
OffHand = 1,
|
||
|
|
}
|
||
|
|
}
|