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.cpp
2012-12-23 15:50:49 +01:00

17 lines
266 B
C++

/*
* Game.cpp
*
* Created on: 24.09.2012
* Author: Felix
*/
#include "Pathfinder.h"
Pathfinder::Pathfinder() {
}
std::vector<sf::Vector2f>
Pathfinder::getPath(Sprite& physical, const sf::Vector2f& destination) {
return std::vector<sf::Vector2f>();
}