NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/PlayerSkill/State/EPlayerSkillState.cs

14 lines
295 B
C#

namespace Gameplay.PlayerSkill.State
{
public static class EPlayerSkillState
{
public const int None = 0;
public const int Idle = 1;
public const int ChoosePos = 2;
public const int Release = 3;
public const int ShowGlobalEffect = 4;
}
}