| 123456789101112131415161718192021 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>Flags that control hinge joint options.</summary>
- public enum HingeJointFlag
- {
- /// <summary>Joint limit is enabled.</summary>
- Limit = 1,
- /// <summary>Joint drive is enabled.</summary>
- Drive = 2
- }
- /** @} */
- }
|