2023-10-31 21:17:10 +04:00

10 lines
139 B
C#

namespace AirplaneWithRadar.MovementStrategy
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}