19 lines
304 B
C#
19 lines
304 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace WinFormsApp1
|
|||
|
{
|
|||
|
internal enum Direction
|
|||
|
{
|
|||
|
Up = 1,
|
|||
|
Down = 2,
|
|||
|
Left = 3,
|
|||
|
Right = 4,
|
|||
|
DRDiagonal = 5,
|
|||
|
DLDiagonal = 6,
|
|||
|
ULDiagonal = 7,
|
|||
|
URDiagonal = 8
|
|||
|
}
|
|||
|
}
|