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