Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Flow/GameFlowState.cs
2026-06-04 14:54:49 +08:00

14 lines
203 B
C#

namespace FlowScope.Flow
{
public enum GameFlowState
{
Idle,
Starting,
Running,
Switching,
NoActiveFeature,
ShuttingDown,
Disposed
}
}