mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
* Fix AutoFishing crash * Fix all warnings * Remove DotNetZip. * Fix the usage of HttpClient.
22 lines
431 B
C#
22 lines
431 B
C#
namespace MinecraftClient.Mapping
|
|
{
|
|
/// <summary>
|
|
/// Represents a unit movement in the world
|
|
/// </summary>
|
|
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
|
|
public enum Direction
|
|
{
|
|
South = 0,
|
|
West = 1,
|
|
North = 2,
|
|
East = 3,
|
|
|
|
Up = 4,
|
|
Down = 5,
|
|
|
|
NorthEast = 6,
|
|
SouthEast = 7,
|
|
SouthWest = 8,
|
|
NorthWest = 9,
|
|
}
|
|
}
|