ADD: added first version

This commit is contained in:
2025-07-15 21:46:39 +02:00
commit 04e82ce1bd
19 changed files with 597 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.example;
import java.io.IOException;
import javafx.fxml.FXML;
public class PrimaryController {
@FXML
private void switchToSecondary() throws IOException {
App.setRoot("secondary");
}
}