adds basis for dieNetUi

This commit is contained in:
Rosia E Evans 2024-04-21 17:11:59 +01:00
parent cd72eae378
commit a5d09f79c1
3 changed files with 56 additions and 0 deletions

View file

@ -1,9 +1,12 @@
package com.monjaro.gamejam;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
import com.monjaro.gamejam.main.Game;
import static com.badlogic.gdx.graphics.GL20.*;
// Please note that on macOS your application needs to be started with the -XstartOnFirstThread JVM argument
public class DesktopLauncher {
@ -13,6 +16,7 @@ public class DesktopLauncher {
config.setTitle("GameJam");
config.setWindowedMode(480, 800);
config.setResizable(false);
new Lwjgl3Application(new Game(), config);
}