From 795c71e0e08fce33e09c56286f7ed2aa7a2ebdd7 Mon Sep 17 00:00:00 2001 From: rubenpirreram Date: Sat, 23 May 2026 20:51:34 +0200 Subject: [PATCH] Added: newGame button, first-impl, no-resizable, newGame can be done better , (say set root) --- src/main/java/it/polimi/ingsw/gc14/ClientLauncherGUI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/it/polimi/ingsw/gc14/ClientLauncherGUI.java b/src/main/java/it/polimi/ingsw/gc14/ClientLauncherGUI.java index 3f9e93a..35db3ca 100644 --- a/src/main/java/it/polimi/ingsw/gc14/ClientLauncherGUI.java +++ b/src/main/java/it/polimi/ingsw/gc14/ClientLauncherGUI.java @@ -15,7 +15,7 @@ public class ClientLauncherGUI { public static class GUIApp extends Application { @Override public void start(Stage stage) throws Exception { - GUI view = new GUI(stage); + GUI view = new GUI(); ClientController controller = new ClientController(view); view.setController(controller); view.start(stage);