update game with new id and new button to mark game as played

This commit is contained in:
Andrin Fassbind
2022-05-06 13:36:49 +02:00
parent ebc0b64cb7
commit 4ef9f62124
2 changed files with 23 additions and 3 deletions
@@ -1,14 +1,34 @@
package ch.zhaw.projekt2.turnierverwaltung.main.gameScheduleView;
import ch.zhaw.projekt2.turnierverwaltung.FXController;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.ChoiceBox;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
public class GameController extends FXController {
@FXML
private Label participantNameOne;
@FXML
private Label participantNameTwo;
@FXML
private ChoiceBox<?> placesChoiceBox;
@FXML
private TextField pointsTeamOne;
@FXML
private TextField pointsTeamTwo;
@FXML
void saveGamerResult(ActionEvent event) {
}
@Override
public void loadContent() {