Allow resizing

This commit is contained in:
Matt Low 2019-12-25 16:26:13 +04:00
parent fbd7715b5a
commit 0b2b7fac0f

View File

@ -10,7 +10,7 @@ public class DesktopLauncher {
config.title = PacDude.TITLE + " - " + PacDude.VERSION; config.title = PacDude.TITLE + " - " + PacDude.VERSION;
config.width = PacDude.LEVEL_WIDTH * 2; config.width = PacDude.LEVEL_WIDTH * 2;
config.height = PacDude.LEVEL_HEIGHT * 2; config.height = PacDude.LEVEL_HEIGHT * 2;
config.resizable = false; config.resizable = true;
new LwjglApplication(new PacDude(), config); new LwjglApplication(new PacDude(), config);
} }
} }