diff --git a/src/common/Game.h b/src/common/Game.h index fb4e79d..3905462 100644 --- a/src/common/Game.h +++ b/src/common/Game.h @@ -104,11 +104,6 @@ private: void loadLevelShape(); void loadShipShape(); - const std::auto_ptr collisionConfiguration; - const std::auto_ptr dispatcher; - const std::auto_ptr overlappingPairCache; - const std::auto_ptr solver; - const std::auto_ptr dynamicsWorld; std::auto_ptr levelVertexArray; std::auto_ptr levelShape; std::auto_ptr levelState; @@ -117,6 +112,12 @@ private: std::auto_ptr shipVertexArray; std::auto_ptr shipShape; + const std::auto_ptr collisionConfiguration; + const std::auto_ptr dispatcher; + const std::auto_ptr overlappingPairCache; + const std::auto_ptr solver; + const std::auto_ptr dynamicsWorld; + Schedule slaveUpdate; };