using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace BansheeEngine
{
/** @addtogroup Physics
* @{
*/
/// Flags that control options for the spherical joint
public enum SphericalJointFlag
{
/// Enables the cone range limit.
Limit = 1
}
/** @} */
}