10 lines
141 B
C#
10 lines
141 B
C#
namespace ProjectLainer.MovementStrategy
|
|
{
|
|
public enum Status
|
|
{
|
|
NotInit,
|
|
InProgress,
|
|
Finish
|
|
}
|
|
}
|