Files
2026-03-04 10:03:45 +08:00

13 lines
106 B
C#

using System;
namespace RootMotion
{
[Serializable]
public enum Axis
{
X = 0,
Y = 1,
Z = 2
}
}