| 1234567891011121314151617181920 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>Physics joint that will maintain a fixed distance and orientation between its two attached bodies.</summary>
- public partial class FixedJoint : Joint
- {
- private FixedJoint(bool __dummy0) { }
- protected FixedJoint() { }
- }
- /** @} */
- }
|