Package com.b3dgs.lionengine.game.pathfinding

Interface Summary
AStarHeuristic  
PathFinder A description of an implementation that can find a path from one location on a tile map to another based on information provided by that tile map.
 

Class Summary
AStarPathFinder A path finder implementation that uses the AStar heuristic based algorithm to determine a path.
ClosestHeuristic A heuristic that uses the tile that is closest to the target as the next best tile.
ClosestSquaredHeuristic A heuristic that uses the tile that is closest to the target as the next best tile.
ManhattanHeuristic A heuristic that drives the search based on the Manhattan distance between the current location and the target
Node  
Path A path determined by some path finding algorithm.
Step