This commit is contained in:
James 2024-04-20 14:40:06 +01:00
parent 1dfc2b50b1
commit 8e6527afa0
5 changed files with 100 additions and 6 deletions

View file

@ -6,10 +6,12 @@ import com.monjaro.gamejam.Game;
// 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("GameJam");
new Lwjgl3Application(new Game(), config);
}
}