//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// #include "Physics/BsSliderJoint.h" #include "Physics/BsPhysics.h" namespace bs { SPtr SliderJoint::create(const SLIDER_JOINT_DESC& desc) { return gPhysics().createSliderJoint(desc); } }