NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Data/EAnimDownState.cs

16 lines
372 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
namespace Gameplay.Character
{
public static class EAnimDownState
{
public const string EMPTY = "empty";
2023-08-22 19:08:45 +08:00
public const string S_MOVE_FORWARD = "move_forward";
public const string S_MOVE_BACK = "move_back";
public const string S_MOVE_LEFT = "move_left";
public const string S_MOVE_RIGHT = "move_right";
2023-08-22 19:08:45 +08:00
}
}