ISEbd-21_Agliullov.D.A._Air.../AirBomber/AirBomber/Direction.cs
2022-09-22 05:29:34 +04:00

14 lines
245 B
C#

namespace AirBomber
{
/// <summary>
/// Направление перемещения
/// </summary>
internal enum Direction
{
None = 0,
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}