| 12345678910111213141516171819 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>Flag that controls slider joint's behaviour.</summary>
- public enum SliderJointFlag
- {
- /// <summary>Enables the linear range limit.</summary>
- Limit = 1
- }
- /** @} */
- }
|