11 lines
139 B
C#
Raw Normal View History


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