10 lines
138 B
C#
Raw Normal View History

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