Initial add

This commit is contained in:
Paul Scott
2023-03-13 20:34:59 +11:00
commit b1a8ce7352
37 changed files with 1310 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package comp1110.ass2.gui;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
// FIXME Task 14
// FIXME Task 15
public class Game extends Application {
private final Group root = new Group();
private static final int WINDOW_WIDTH = 1200;
private static final int WINDOW_HEIGHT = 700;
@Override
public void start(Stage stage) throws Exception {
Scene scene = new Scene(this.root, WINDOW_WIDTH, WINDOW_HEIGHT);
stage.setScene(scene);
stage.show();
}
}