Inhaltsstoffe-Filtern View+Controller

This commit is contained in:
2023-12-13 17:27:57 +01:00
parent 7f4fde9f4a
commit e8d29f851c
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Programmiert von Samuel Wolff
// Noch nicht getestet
package de.subway_surfers.vpr_app;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.CheckBox;
import javafx.scene.control.ListView;
public class InhaltsstoffeFilternController {
private @FXML ListView zutatListView;
private @FXML CheckBox speichernCheckbox;
private @FXML Button abbrechenButton;
private @FXML Button fortfahrenButton;
}