18 lines
301 B
C#
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 //Вниз
|
|
}
|
|
}
|