2022-11-23 22:48:45 +04:00

18 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Airbus
{
internal enum Direction
{
None = 0,
Left = 1, //Влево
Up = 2, //Вверх
Right = 3, //Вправо
Down = 4 //Вниз
}
}