This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/util/Pathfinder.h
2012-12-22 15:10:26 +01:00

25 lines
373 B
C++

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