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

18 lines
252 B
C++

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