10 lines
138 B
C#

namespace ProjectBulldozer.MovementStrategy
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}