PIbd-23 Yakobchuk S.V. LabWork_02 #2

Closed
sofia7ya wants to merge 13 commits from LabWork_02 into LabWork_01
Showing only changes of commit 3113f2defd - Show all commits

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sailboat.MovementStrategy
{
/// <summary>
/// Статус выполнения операции перемещения
/// </summary>
public enum Status
{
NotInit,
InProgress,
Finish
}
}