List of usage examples for com.badlogic.gdx.ai.pfa PathFinder interface-usage
From source file us.thirdmillenium.strategicassaultsimulator.ai.tile.TileAStarPathFinder.java
public class TileAStarPathFinder implements PathFinder<TileNode> { // A wrapper for the TileNode to be used private class AStarTileNode implements Comparable<AStarTileNode> { private AStarTileNode cameFrom; private TileNode node;