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