|
|
|
|
@ -6,15 +6,15 @@ import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
|
|
|
|
import com.dungeoncrawler.control.Controller;
|
|
|
|
|
|
|
|
|
|
public class DesktopLauncher {
|
|
|
|
|
public static void main (String[] arg) {
|
|
|
|
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
|
|
|
|
public static void main (String[] arg) {
|
|
|
|
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
|
|
|
|
|
|
|
|
|
config.width = 1600;
|
|
|
|
|
config.height = 900;
|
|
|
|
|
config.title = "The Restless Caverns - Der beste Dungeon Crawler ALLER ZEITEN";
|
|
|
|
|
config.resizable = true;
|
|
|
|
|
config.width = 1600;
|
|
|
|
|
config.height = 900;
|
|
|
|
|
config.title = "The Restless Caverns - Der beste Dungeon Crawler ALLER ZEITEN";
|
|
|
|
|
config.resizable = true;
|
|
|
|
|
|
|
|
|
|
//config.addIcon("logo.png", Files.FileType.Internale);
|
|
|
|
|
new LwjglApplication(new Controller(), config);
|
|
|
|
|
}
|
|
|
|
|
//config.addIcon("logo.png", Files.FileType.Internale);
|
|
|
|
|
new LwjglApplication(new Controller(), config);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|