PIbd-22_Isaeva_A.I._Airbus_.../AirBus/Direction.cs
2023-10-08 18:18:23 +03:00

17 lines
249 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirBus
{
public enum Direction
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}