- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "Physics/BsDistanceJoint.h"
- #include "Physics/BsPhysics.h"
- namespace bs
- {
- SPtr<DistanceJoint> DistanceJoint::create(const DISTANCE_JOINT_DESC& desc)
- {
- return gPhysics().createDistanceJoint(desc);
- }
- }
|