Example usage for com.badlogic.gdx.backends.lwjgl LwjglApplication subclass-usage

List of usage examples for com.badlogic.gdx.backends.lwjgl LwjglApplication subclass-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.backends.lwjgl LwjglApplication subclass-usage.

Usage

From source file com.agateau.pixelwheels.tools.CommandLineApplication.java

/**
 * Convenience abstract class to create command line apps while getting access to all Gdx.* services
 */
public abstract class CommandLineApplication extends LwjglApplication {
    private static class AppAdapter extends ApplicationAdapter {
        CommandLineApplication mApp;

From source file com.bladecoder.engineeditor.Main.java

public class Main extends LwjglApplication {

    public static void main(final String[] args) {
        // This dummy instantiation will initialize JavaFX for us
        new JFXPanel();

From source file com.jemge.core.JAppLWJGL.java

public class JAppLWJGL extends LwjglApplication {
    public JAppLWJGL(ApplicationListener listener) {
        super(listener);
    }

    public JAppLWJGL(ApplicationListener listener, JConfig config) {

From source file org.illarion.engine.backend.gdx.GdxLwjglApplication.java

/**
 * This is a overwritten LWJGL application that is used to extend the default way this class works by some needed
 * components such as a proper handling of the application shutdown.
 *
 * @author Martin Karing <nitram@illarion.org>
 */