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

16 lines
382 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;
public const int PreNoEffect = 5;
public const int ClickChoosePos = 6;
}
}