PIbd-22-Romanov-E.V.-Hoisti.../Bulldozer/Bulldozer/Direction.cs
Егор Романов ПИбд-22 d291a03651 Лабораторная работа 1
2022-09-11 22:58:22 +04:00

17 lines
254 B
C#

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