PIbd-21_MalafeevL.S._Cruise.../Cruiser/MovementStrategy/Status.cs

19 lines
379 B
C#
Raw Normal View History

2023-09-25 14:09:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cruiser.MovementStrategy
{
/// <summary>
/// Статус выполнения операции перемещения
/// </summary>
public enum Status
{
NotInit,
InProgress,
Finish
}
}