using System; public enum Direction { UP = 0, DOWN = 1, LEFT = 3, RIGHT = 4, UP_LEFT = 5, UP_RIGHT = 6, DOWN_LEFT = 7, DOWN_RIGHT = 8 }