Match the original Pacman dimensions

Move the field up to match original Pacman
position.
This commit is contained in:
2019-12-24 12:51:42 +04:00
parent eae226b5bb
commit ae4069f9fc
3 changed files with 6 additions and 6 deletions

View File

@ -8,9 +8,9 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = PacDude.TITLE + " - " + PacDude.VERSION;
config.width = (224 * 2);
config.height = (248 * 2);
config.resizable = false;
config.width = PacDude.LEVEL_WIDTH * 2;
config.height = PacDude.LEVEL_HEIGHT * 2;
config.resizable = true;
new LwjglApplication(new PacDude(), config);
}
}