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

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

Introduction

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

Usage

From source file com.mygdx.game.pathfinding.Edge.java

/**
 * @author jsjolund
 */
public class Edge implements Connection<Triangle> {

    public Vector3 rightVertex;

From source file us.thirdmillenium.strategicassaultsimulator.ai.tile.TileConnect.java

/**
 * TileConnect tracks the connections between two TileNodes
 */
public class TileConnect implements Connection<TileNode> {
    private TileNode Me;
    private TileNode Connect;