8 lines
93 B
Java
8 lines
93 B
Java
package ProjectStormtrooper;
|
|
|
|
public enum Status {
|
|
NotInit,
|
|
InProgress,
|
|
Finish
|
|
}
|