initial push

This commit is contained in:
Rosia E Evans 2024-04-20 12:58:06 +01:00
parent 1ba01e529a
commit 58317495a6
12 changed files with 516 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package com.monjaro.gamejam;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
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);
}
}