BsFixedJoint.h 491 B

1234567891011121314151617
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsCorePrerequisites.h"
  5. #include "BsJoint.h"
  6. namespace BansheeEngine
  7. {
  8. class BS_CORE_EXPORT FixedJoint : public Joint
  9. {
  10. public:
  11. virtual ~FixedJoint() { }
  12. static SPtr<FixedJoint> create();
  13. };
  14. }