From 15587f9a5e1a65bb220812b3ef7f54669a58baab Mon Sep 17 00:00:00 2001 From: tellsense Date: Mon, 25 Dec 2023 19:59:05 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=D0=B0=20Direction.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectElectricLocomotive/Direction.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ProjectElectricLocomotive/ProjectElectricLocomotive/Direction.cs diff --git a/ProjectElectricLocomotive/ProjectElectricLocomotive/Direction.cs b/ProjectElectricLocomotive/ProjectElectricLocomotive/Direction.cs new file mode 100644 index 0000000..30f1697 --- /dev/null +++ b/ProjectElectricLocomotive/ProjectElectricLocomotive/Direction.cs @@ -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 + } +}