| 1234567891011121314151617 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- #include "BsJoint.h"
- namespace BansheeEngine
- {
- class BS_CORE_EXPORT FixedJoint : public Joint
- {
- public:
- virtual ~FixedJoint() { }
- static SPtr<FixedJoint> create();
- };
- }
|