/* * pathfinder.h * * Created on: 24.09.2012 * Author: Felix */ #ifndef PATHFINDER_H_ #define PATHFINDER_H_ #include #include "../abstract/Body.h" class Body; class Pathfinder { // Public functions. public: Pathfinder(); std::vector getPath(Body& physical, const sf::Vector2f& destination); }; #endif /* PATHFINDER_H_ */