DotRecastNetSim/src/DotRecast.Recast/RcAxis.cs

9 lines
197 B
C#
Raw Normal View History

namespace DotRecast.Recast
{
public static class RcAxis
{
public const int RC_AXIS_X = 0;
public const int RC_AXIS_Y = 1;
public const int RC_AXIS_Z = 2;
};
}