PIbd-21_Krasnikov_Lab1.base/WinFormsApp1/Direction.cs

20 lines
322 B
C#
Raw Normal View History

2022-11-13 20:39:23 +04:00
using System;
using System.Collections.Generic;
using System.Text;
namespace WinFormsApp1
{
internal enum Direction
{
None = 0,
2022-11-13 20:39:23 +04:00
Up = 1,
Down = 2,
Left = 3,
Right = 4,
DRDiagonal = 5,
DLDiagonal = 6,
ULDiagonal = 7,
URDiagonal = 8
}
}