1//************************************ bs::framework - Copyright 2018 Marko Pintera **************************************//
2//*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********//
3#include "Physics/BsHingeJoint.h"
4#include "Physics/BsPhysics.h"
5
6namespace bs
7{
8 SPtr<HingeJoint> HingeJoint::create(PhysicsScene& scene, const HINGE_JOINT_DESC& desc)
9 {
10 return scene.createHingeJoint(desc);
11 }
12}