From 2a59f02cef77a492ebe735f28e145628c1a0fdd4 Mon Sep 17 00:00:00 2001 From: x1337-man Date: Mon, 10 Feb 2025 14:08:01 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D1=87=D0=B8=D1=81=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BD=D0=B0=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectGasolineTanker/DirectionType.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ProjectGasolineTanker/ProjectGasolineTanker/DirectionType.cs diff --git a/ProjectGasolineTanker/ProjectGasolineTanker/DirectionType.cs b/ProjectGasolineTanker/ProjectGasolineTanker/DirectionType.cs new file mode 100644 index 0000000..ef29a58 --- /dev/null +++ b/ProjectGasolineTanker/ProjectGasolineTanker/DirectionType.cs @@ -0,0 +1,9 @@ +namespace ProjectGasolineTanker; + +public enum DirectonType +{ + Up, + Down, + Left, + Right, +}