All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.badlogic.gdx.backends.lwjgl.LwjglApplication Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.7
Show newest version
package com.badlogic.gdx.backends.lwjgl;

import com.badlogic.gdx.ApplicationListener;
import com.jtransc.media.limelibgdx.LimeApplication;

/**
 * Compatibility class to run games without touching them.
 */
public class LwjglApplication extends LimeApplication {
	public LwjglApplication(ApplicationListener applicationListener, String title, int width, int height) {
		super(applicationListener, title, width, height);
	}

	public LwjglApplication(ApplicationListener listener) {
		this(listener, (String) null, 640, 480);
	}


	public LwjglApplication(ApplicationListener listener, LwjglApplicationConfiguration config) {
		this(listener, config.title, config.width, config.height);
	}
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy