diff --git a/SelfPropelledArtilleryUnit/Direction.cs b/SelfPropelledArtilleryUnit/Direction.cs new file mode 100644 index 0000000..8d54af8 --- /dev/null +++ b/SelfPropelledArtilleryUnit/Direction.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Artilleries +{ + internal enum Direction + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +}