Uses of Interface
zombie.ai.astar.AStarHeuristic

Packages that use AStarHeuristic
zombie.ai.astar   
zombie.ai.astar.heuristics   
 

Uses of AStarHeuristic in zombie.ai.astar
 

Constructors in zombie.ai.astar with parameters of type AStarHeuristic
AStarPathFinder(IsoGameCharacter character, AStarPathMap finder, int maxSearchDistance, boolean allowDiagMovement, AStarHeuristic heuristic)
           
 

Uses of AStarHeuristic in zombie.ai.astar.heuristics
 

Classes in zombie.ai.astar.heuristics 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