| 123456789101112131415161718192021 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>Specifies first or second body referenced by a Joint.</summary>
- public enum JointBody
- {
- /// <summary>Body the joint is influencing.</summary>
- Target = 0,
- /// <summary>Body the joint is attached to (if any).</summary>
- Anchor = 1
- }
- /** @} */
- }
|