19 lines
379 B
C#
19 lines
379 B
C#
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
|
|
}
|
|
}
|