13 lines
106 B
C#
13 lines
106 B
C#
using System;
|
|
|
|
namespace RootMotion
|
|
{
|
|
[Serializable]
|
|
public enum Axis
|
|
{
|
|
X = 0,
|
|
Y = 1,
|
|
Z = 2
|
|
}
|
|
}
|