Example usage for com.badlogic.gdx ApplicationListener interface-usage

List of usage examples for com.badlogic.gdx ApplicationListener interface-usage

Introduction

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

Usage

From source file com.tm4rkus.conquertheempire.ConquerTheEmpire.java

public class ConquerTheEmpire implements ApplicationListener {
    /**
     * The time the last frame was rendered, used for throttling framerate
     */
    private Game game;

From source file com.tnf.ptm.PtmApplication.java

public class PtmApplication implements ApplicationListener {

    private static Logger logger = new Logger();

    private PtmInputManager myInputMan;
    private UiDrawer myUiDrawer;

From source file com.tnf.ptm.sound.SoundTestListener.java

public class SoundTestListener implements ApplicationListener {

    private SoundTestCmp myCmp;

    @Override
    public void create() {

From source file com.turbogerm.germlibrary.game.GameBase.java

public abstract class GameBase implements ApplicationListener {

    private static final float MAX_DELTA = 0.1f;
    private static final float UPDATE_RATE = 60.0f;
    private static final float UPDATE_STEP = 1.0f / UPDATE_RATE;

From source file com.vlaaad.common.gdx.App.java

/**
 * Created 14.06.13 by vlaaad
 */
public abstract class App implements ApplicationListener {
    private float scale = 1;
    private State state;

From source file com.watabou.noosa.Game.java

public abstract class Game<GameActionType> implements ApplicationListener {

    public static Game instance;

    // Actual size of the screen
    public static int width;

From source file com.wiztoybox.examplelauncher.Example.java

public abstract class Example extends AndroidApplication implements ApplicationListener {

    // Class files must reside in this path
    private static final String examplePath = "com.wiztoybox.examplelauncher.examples";

    //TODO: It appears getting examples automatically can't be done with reflection... see

From source file de.bioviz.ui.BioViz.java

public class BioViz implements ApplicationListener {

    /**
     * The internal logger.
     */
    private static Logger logger = LoggerFactory.getLogger(BioViz.class);

From source file de.brainstormsoftworks.taloonerrl.core.TaloonerRl.java

/**
 * main entry point to the game
 *
 * @author David Becker
 *
 */

From source file de.r2soft.empires.client.core.R2Core.java

public class R2Core implements ApplicationListener {

    private SpriteBatch batch;

    private R2Screen screen;
    private Stack<R2Overlay> overlays;