10 lines
136 B
C#
Raw Permalink Normal View History

namespace AirBomber.MovementStrategy
{
public enum Status
{
NotInit = 1,
InProgress,
Finish,
}
}