diff --git a/src/main/java/org/example/se302/HelloApplication.java b/src/main/java/org/example/se302/HelloApplication.java deleted file mode 100644 index 58c9c1f..0000000 --- a/src/main/java/org/example/se302/HelloApplication.java +++ /dev/null @@ -1,19 +0,0 @@ -package org.example.se302; - -import javafx.application.Application; -import javafx.fxml.FXMLLoader; -import javafx.scene.Scene; -import javafx.stage.Stage; - -import java.io.IOException; - -public class HelloApplication extends Application { - @Override - public void start(Stage stage) throws IOException { - FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml")); - Scene scene = new Scene(fxmlLoader.load(), 320, 240); - stage.setTitle("Hello!"); - stage.setScene(scene); - stage.show(); - } -}