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