PhysicsWorld has a ShapeManager

This commit is contained in:
Andrew Meadows 2014-11-03 16:02:16 -08:00
parent 4a1133fbc2
commit f1bdd2ef7b

View file

@ -16,6 +16,8 @@
#include <btBulletDynamicsCommon.h>
#include "ShapeManager.h"
class PhysicsWorld {
public:
@ -32,6 +34,8 @@ protected:
btBroadphaseInterface* _broadphaseFilter;
btSequentialImpulseConstraintSolver* _constraintSolver;
btDiscreteDynamicsWorld* _dynamicsWorld;
ShapeManager _shapeManager;
private:
};