14 lines
203 B
C#
14 lines
203 B
C#
namespace FlowScope.Flow
|
|
{
|
|
public enum GameFlowState
|
|
{
|
|
Idle,
|
|
Starting,
|
|
Running,
|
|
Switching,
|
|
NoActiveFeature,
|
|
ShuttingDown,
|
|
Disposed
|
|
}
|
|
}
|