2022-12-05 23:41:28 +04:00

18 lines
301 B
C#

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