namespace ProjectStormtrooper.MovementStrategy; public enum MovementDirection { /// /// Вверх /// Up = 1, /// /// Вниз /// Down = 2, /// /// Влево /// Left = 3, /// /// Вправо /// Right = 4 }