use of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration in project RubeLoader by tescott.
the class RubeLoaderTestDesktop method mainLaunch.
/**
* @param args
*/
public static void mainLaunch(int width, int height, boolean useAssetManager, int rubeListIndex) {
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = GAME_NAME;
cfg.width = width;
cfg.height = height;
new LwjglApplication(new RubeLoaderTest(useAssetManager, rubeListIndex), cfg);
}
use of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration in project libgdx-inGameConsole by StrongJoshua.
the class Box2DTest method main.
public static void main(String[] args) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
new LwjglApplication(new Box2DTest(), config);
}
use of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration in project Alkahest-Coffee by AlkahestDev.
the class DesktopLauncher method main.
public static void main(String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "Alkahest Coffee Corporation";
/*config.fullscreen = true;
config.width=999999; //TODO: make a better way of fullscreening : i made one in fakeMainGame, but the hitboxes dont work :/
config.height=999999;*/
config.width = 1280;
config.height = 720;
config.resizable = false;
config.addIcon("badAlkahest.png", Files.FileType.Internal);
new LwjglApplication(new MainGame(), config);
}
use of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration in project Alkahest-Coffee by AlkahestDev.
the class tester method main.
public static void main(String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
new LwjglApplication(new fakeMainGame(), config);
config.width = 1080;
config.height = 720;
}
use of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration in project nhglib by VoidZombie.
the class DesktopLauncher method main.
public static void main(String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.width = 1280;
config.height = 720;
new LwjglApplication(new Main(), config);
}
Aggregations