|
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;
|
|
|
|
}
|
|
}
|