Создание класса Direction.

This commit is contained in:
Андрей Байгулов 2023-12-25 19:59:05 +04:00
parent aba376a7ae
commit 15587f9a5e

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectElectricLocomotive
{
public enum Direction
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}