Example usage for com.badlogic.gdx.ai.pfa PathFinder interface-usage

List of usage examples for com.badlogic.gdx.ai.pfa PathFinder interface-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.ai.pfa PathFinder interface-usage.

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;