CFixedJoint.generated.cs 430 B

123456789101112131415161718192021
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Physics
  7. * @{
  8. */
  9. /// <summary>Physics joint that will maintain a fixed distance and orientation between its two attached bodies.</summary>
  10. [ShowInInspector]
  11. public partial class FixedJoint : Joint
  12. {
  13. private FixedJoint(bool __dummy0) { }
  14. protected FixedJoint() { }
  15. }
  16. /** @} */
  17. }