17 lines
425 B
C#
17 lines
425 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";
|
|
|
|
public const string N_MOVE_FORWARD = "walk";
|
|
|
|
}
|
|
}
|