using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace lab1.MovementStrategy; public enum StrategyStatus { /// /// Все готово к началу /// NotInit, /// /// Выполняется /// InProgress, /// /// Завершено /// Finish }