PIbd22_Kuznetsov_A.V._Excav.../Excavator/Status.cs

16 lines
248 B
C#
Raw Normal View History

2023-12-15 21:24:31 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Excavator.MovementStrategy
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}