10 lines
141 B
C#
Raw Permalink Normal View History

2023-12-08 20:12:06 +04:00
namespace ProjectLainer.MovementStrategy
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}