|
|
|
@ -7,8 +7,11 @@ import com.dungeoncrawler.control.Controller;
|
|
|
|
public class DesktopLauncher {
|
|
|
|
public class DesktopLauncher {
|
|
|
|
public static void main (String[] arg) {
|
|
|
|
public static void main (String[] arg) {
|
|
|
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
|
|
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
|
|
|
|
|
|
|
|
|
|
|
config.width = 1600;
|
|
|
|
config.width = 1600;
|
|
|
|
config.height = 900;
|
|
|
|
config.height = 900;
|
|
|
|
|
|
|
|
config.title = "The Restless Caverns";
|
|
|
|
|
|
|
|
|
|
|
|
new LwjglApplication(new Controller(), config);
|
|
|
|
new LwjglApplication(new Controller(), config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|