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

15 lines
337 B
C#
Raw Normal View History

2023-12-06 12:22:59 +08:00
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;
2023-12-11 16:25:13 +08:00
public const int ShowGlobalEffect = 4;
2023-12-19 15:01:19 +08:00
public const int PreNoEffect = 5;
2023-12-06 12:22:59 +08:00
}
}