Skip to content

Commit

Permalink
Increase window size on start
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-wade42 committed Feb 22, 2022
1 parent 3e28f8f commit 735baff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions desktop/src/com/mygdx/pirategame/desktop/DesktopLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.height=720;
config.width=1280;
new LwjglApplication(new PirateGame(), config);
}
}

0 comments on commit 735baff

Please sign in to comment.