#ifndef OBSTACLE_H #define OBSTACLE_H #include "Vector.h" class Obstacle { public: Obstacle(); ~Obstacle(); Vector s; Vector w; }; #endif