Example usage for com.badlogic.gdx.ai.msg Telegraph interface-usage

List of usage examples for com.badlogic.gdx.ai.msg Telegraph interface-usage

Introduction

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

Usage

From source file com.badlogic.gdx.ai.tests.fsm.Bob.java

/** @author davebaol */
public class Bob implements Telegraph {
    // the amount of gold a miner must have before he feels comfortable
    final public static int COMFORT_LEVEL = 5;
    // the amount of nuggets a miner can carry
    final public static int MAX_NUGGETS = 3;

From source file com.badlogic.gdx.ai.tests.fsm.Elsa.java

/** @author davebaol */
public class Elsa implements Telegraph {

    // an instance of the state machine class
    private StateMachine<Elsa> stateMachine;

From source file com.badlogic.gdx.ai.tests.msg.Citizen.java

/** @author avianey */
public class Citizen implements Telegraph, TelegramProvider {

    static int NUM = 0;

    final int num;

From source file com.badlogic.gdx.ai.tests.msg.City.java

/** @author avianey */
public class City implements Telegraph {

    Array<House> houses;

    public City() {

From source file com.badlogic.gdx.ai.tests.msg.House.java

/** @author avianey */
public class House implements Telegraph {

    static int NUM = 0;

    Array<Citizen> citizens;

From source file com.bombinggames.weaponofchoice.EnemyAI.java

/**
 *
 * @author Benedikt Vogler
 */
public class EnemyAI implements Component, Telegraph {