using System; using System.Collections.Generic; using System.Text; namespace SelfPropelledArtilleryUnit { public enum Direction { Up = 1, Down = 2, Left = 3, Right = 4 } }