0% found this document useful (0 votes)
5 views1 page

Remnant Desktop Application Setup

This Java code defines a DesktopLauncher class that sets up and launches a Remnant game using the LibGDX framework. It creates an Lwjgl3ApplicationConfiguration, sets title, fullscreen, vsync, and backbuffer properties, and launches a new Lwjgl3Application passing in the Remnant game class.

Uploaded by

sofianto
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Remnant Desktop Application Setup

This Java code defines a DesktopLauncher class that sets up and launches a Remnant game using the LibGDX framework. It creates an Lwjgl3ApplicationConfiguration, sets title, fullscreen, vsync, and backbuffer properties, and launches a new Lwjgl3Application passing in the Remnant game class.

Uploaded by

sofianto
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

package [Link].

desktop;

import [Link].lwjgl3.Lwjgl3Application;
import [Link].lwjgl3.Lwjgl3ApplicationConfiguration;
import [Link];

public class DesktopLauncher {

public static void main (String[] arg) {


Lwjgl3ApplicationConfiguration config = new
Lwjgl3ApplicationConfiguration();
[Link]("Remnant");

[Link]([Link]());
[Link](true);
[Link](true);
[Link](8, 8, 8, 8, 16, 0, 1);
new Lwjgl3Application(new Remnant(), config);
}
}

You might also like