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

13 lines
248 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;
}
}