#ifndef M_ARTICULATED_OBSTACLE_H #define M_ARTICULATED_OBSTACLE_H #include "moving_obstacle.h" using namespace std; class ArticulatedObstacle { public: ArticulatedObstacle(Simulator* sim, int index, int currentIndex, std::vector * pos, int nbParts, std::vector goals, int curGoal =0); std::vector members; int index; int nbBodyPart; std::vector goals; VEC3 curGoal; }; #endif