using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MinecraftClient.Mapping { /// /// Represents a unit movement in the world /// /// public enum Direction { South = 0, West = 1, North = 2, East = 3, Up = 4, Down = 5 } }