15 lines
363 B
C#
15 lines
363 B
C#
namespace Gameplay.Character
|
|
{
|
|
public static class EAnimDownState
|
|
{
|
|
|
|
public const string EMPTY = "empty";
|
|
|
|
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";
|
|
|
|
}
|
|
}
|