1
0
mirror of https://github.com/inf112-v20/Fiasko.git synced 2025-07-05 15:44:44 +02:00

Øker størrelsen på vist brett

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

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