Zwischenstand Views

This commit is contained in:
2024-12-07 01:29:34 +01:00
parent 47f9285f37
commit ed73c8e876
7 changed files with 342 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
package ui;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
FXMLLoader loader = new FXMLLoader(getClass().getResource("/Mainview.fxml"));
Scene scene = new Scene(loader.load());
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}