diff --git a/DoubleDeckerBus/Direction.cs b/DoubleDeckerBus/Direction.cs new file mode 100644 index 0000000..e9c75f7 --- /dev/null +++ b/DoubleDeckerBus/Direction.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DoubleDeckerBus +{ + internal enum Direction + { + /// + /// Вверх + /// + Up = 1, + /// + /// Вниз + /// + Down = 2, + /// + /// Влево + /// + Left = 3, + /// + /// Вправо + /// + Right = 4 + } +} \ No newline at end of file