NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/State/ELevelState.cs

16 lines
346 B
C#

namespace Gameplay.Level
{
public static class ELevelState
{
public const int None = 0;
public const int Prepare = 1;
public const int Battle = 2;
public const int End = 3;
public const int BattleStory = 4;
public const int PreStory = 5;
public const int EndStory = 6;
}
}