Refactored LibGDX Client

This commit is contained in:
2021-11-12 22:34:14 +01:00
parent 70e03a1e9e
commit 3c1a716518
32 changed files with 20977 additions and 824 deletions

View File

@@ -8,10 +8,7 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "Wizard Jubilaeumsedition 2021";
config.height = WizardGame.HEIGHT;
config.width = WizardGame.WIDTH;
config.foregroundFPS = 60;
config.resizable = false;
LwjglApplication app = new LwjglApplication(new WizardGame(), config);
new LwjglApplication(new WizardGame(), config);
}
}