Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h')
-rw-r--r--extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h b/extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h
index 8348795ef70..e1fea3a49c0 100644
--- a/extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h
+++ b/extern/bullet2/src/BulletDynamics/Dynamics/btActionInterface.h
@@ -20,11 +20,17 @@ class btIDebugDraw;
class btCollisionWorld;
#include "LinearMath/btScalar.h"
+#include "btRigidBody.h"
///Basic interface to allow actions such as vehicles and characters to be updated inside a btDynamicsWorld
class btActionInterface
{
- public:
+protected:
+
+ static btRigidBody& getFixedBody();
+
+
+public:
virtual ~btActionInterface()
{
@@ -36,4 +42,5 @@ class btActionInterface
};
-#endif //_BT_ACTION_INTERFACE_H \ No newline at end of file
+#endif //_BT_ACTION_INTERFACE_H
+