2023-10-08 19:18:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-11-18 10:00:43 +04:00
|
|
|
|
namespace ProjectAirbus.MovementStrategy
|
2023-10-08 19:18:23 +04:00
|
|
|
|
{
|
2023-11-18 10:00:43 +04:00
|
|
|
|
internal enum Status
|
2023-10-08 19:18:23 +04:00
|
|
|
|
{
|
2023-11-18 10:00:43 +04:00
|
|
|
|
NotInit,
|
|
|
|
|
InProgress,
|
|
|
|
|
Finish
|
2023-10-08 19:18:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|