added new constructors to game config class

This commit is contained in:
Sem van der Hoeven
2020-05-11 09:12:33 +02:00
parent 2849c34c63
commit a5aaec76b1
2 changed files with 36 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ import temp.Networking;
public class DesktopLauncher {
public static void main (String[] arg) {
GameApplicationConfiguration config = new GameApplicationConfiguration(1200,800);
GameApplicationConfiguration config = new GameApplicationConfiguration("Netwerk Game",1200,800);
new LwjglApplication(new MainGame(), config);
}
}