![JAR search and dependency download from the Maven repository](/logo.png)
com.badlogic.gdx.backends.lwjgl.LwjglApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-backend-jtransc Show documentation
Show all versions of gdx-backend-jtransc Show documentation
JVM AOT compiler currently generating JavaScript, Haxe, with initial focus on Kotlin and games.
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