2
0

BsFixedJoint.cpp 449 B

123456789101112
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Physics/BsFixedJoint.h"
  4. #include "Physics/BsPhysics.h"
  5. namespace bs
  6. {
  7. SPtr<FixedJoint> FixedJoint::create(const FIXED_JOINT_DESC& desc)
  8. {
  9. return gPhysics().createFixedJoint(desc);
  10. }
  11. }