From 5737b79408952f3482e094ca905ffca400d1c686 Mon Sep 17 00:00:00 2001 From: tellsense Date: Sun, 17 Sep 2023 13:32:20 +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 --- .../ElectricLocomotive/Direction.cs | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ElectricLocomotive/ElectricLocomotive/Direction.cs diff --git a/ElectricLocomotive/ElectricLocomotive/Direction.cs b/ElectricLocomotive/ElectricLocomotive/Direction.cs new file mode 100644 index 0000000..fffce99 --- /dev/null +++ b/ElectricLocomotive/ElectricLocomotive/Direction.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ElectricLocomotive +{ + public enum Direction + { + /// + /// Вверх + /// + Up = 1, + /// + /// Вниз + /// + Down = 2, + /// + /// Влево + /// + Left = 3, + /// + /// Вправо + /// + Right = 4 + } +}