12 lines
193 B
C#
12 lines
193 B
C#
|
|
namespace Gameplay.Character
|
|||
|
|
{
|
|||
|
|
public static class EAnimStateIndex
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public const int Full = 0;
|
|||
|
|
public const int Up = 1;
|
|||
|
|
public const int Down = 2;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|