mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 06:57:37 +02:00
PhysicsWorld has a ShapeManager
This commit is contained in:
parent
4a1133fbc2
commit
f1bdd2ef7b
1 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,8 @@
|
||||||
|
|
||||||
#include <btBulletDynamicsCommon.h>
|
#include <btBulletDynamicsCommon.h>
|
||||||
|
|
||||||
|
#include "ShapeManager.h"
|
||||||
|
|
||||||
class PhysicsWorld {
|
class PhysicsWorld {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -32,6 +34,8 @@ protected:
|
||||||
btBroadphaseInterface* _broadphaseFilter;
|
btBroadphaseInterface* _broadphaseFilter;
|
||||||
btSequentialImpulseConstraintSolver* _constraintSolver;
|
btSequentialImpulseConstraintSolver* _constraintSolver;
|
||||||
btDiscreteDynamicsWorld* _dynamicsWorld;
|
btDiscreteDynamicsWorld* _dynamicsWorld;
|
||||||
|
|
||||||
|
ShapeManager _shapeManager;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue