forked from mirror/DotRecast
9 lines
197 B
C#
9 lines
197 B
C#
|
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;
|
|||
|
};
|
|||
|
}
|