Øker størrelsen på vist brett

This commit is contained in:
Kristian Knarvik 2020-02-25 16:58:59 +01:00
parent a58e9e5e93
commit 6f298797e7

View File

@ -8,8 +8,8 @@ public class Main {
public static void main(String[] args) {
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = "Game Board";
cfg.width = 768;
cfg.height = 769;
cfg.width = 900;
cfg.height = 900;
new LwjglApplication(new GameLauncher(), cfg);
}