Uses of Interface
com.b3dgs.lionengine.game.pathfinding.AStarHeuristic

Packages that use AStarHeuristic
com.b3dgs.lionengine.game.pathfinding   
 

Uses of AStarHeuristic in com.b3dgs.lionengine.game.pathfinding
 

Classes in com.b3dgs.lionengine.game.pathfinding that implement AStarHeuristic
 class ClosestHeuristic
          A heuristic that uses the tile that is closest to the target as the next best tile.
 class ClosestSquaredHeuristic
          A heuristic that uses the tile that is closest to the target as the next best tile.
 class ManhattanHeuristic
          A heuristic that drives the search based on the Manhattan distance between the current location and the target
 

Constructors in com.b3dgs.lionengine.game.pathfinding with parameters of type AStarHeuristic
AStarPathFinder(PathBasedMap<? extends AbstractPathTile> map, int maxSearchDistance, boolean allowDiagMovement, AStarHeuristic heuristic)
          Create a path finder.