ISEbd-22. Baygulov A.A. Lab work 1 (hard) #4

Closed
tellsense wants to merge 7 commits from laba1_H into main
Showing only changes of commit 15587f9a5e - Show all commits

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
}
}