using System; using System.Collections.Generic; using System.Text; namespace WinFormsApp1 { internal enum Direction { None = 0, Up = 1, Down = 2, Left = 3, Right = 4, DRDiagonal = 5, DLDiagonal = 6, ULDiagonal = 7, URDiagonal = 8 } }