8 lines
98 B
Java
8 lines
98 B
Java
package MovementStrategy;
|
|
|
|
public enum StrategyStatus {
|
|
NotInit,
|
|
InProgress,
|
|
Finish
|
|
}
|