gui: Added title and set not resizable

This commit is contained in:
2023-03-19 21:46:36 +11:00
parent fb204b42be
commit 7e60847379

View File

@@ -17,6 +17,8 @@ public class Game extends Application {
public void start(Stage stage) throws Exception { public void start(Stage stage) throws Exception {
Scene scene = new Scene(this.root, WINDOW_WIDTH, WINDOW_HEIGHT); Scene scene = new Scene(this.root, WINDOW_WIDTH, WINDOW_HEIGHT);
stage.setScene(scene); stage.setScene(scene);
stage.setTitle("Blue Lagoon");
stage.setResizable(false);
stage.show(); stage.show();
} }
} }