BsScriptHingeJointDrive.generated.h 521 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. #include "../../../bsf/Source/Foundation/bsfCore/Physics/BsHingeJoint.h"
  5. namespace bs
  6. {
  7. class BS_SCR_BE_EXPORT ScriptHingeJointDrive : public ScriptObject<ScriptHingeJointDrive>
  8. {
  9. public:
  10. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "HingeJointDrive")
  11. static MonoObject* box(const HingeJointDrive& value);
  12. static HingeJointDrive unbox(MonoObject* value);
  13. private:
  14. ScriptHingeJointDrive(MonoObject* managedInstance);
  15. };
  16. }