blob: 9a0667bf02d3b6af3e61ce79471b8aac11c83150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package net.caraus.curtain;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
import net.caraus.curtain.Curtain;
// Please note that on macOS your application needs to be started with the -XstartOnFirstThread JVM argument
public class DesktopLauncher {
public static void main (String[] arg) {
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
config.setForegroundFPS(60);
config.setTitle("Curtain");
new Lwjgl3Application(new Curtain(), config);
}
}
|