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

15 lines
337 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;
}
}