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