PIbd-22_Isaeva_A.I._Airbus_.../Airbus/Direction.cs

17 lines
249 B
C#
Raw Normal View History

2023-10-08 19:18:23 +04:00
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
}
}