Files
SAE31_2024/TestV1/TestEnAttendantResolutionBug/GameController.java

14 lines
287 B
Java

public class GameController {
private final Board board;
private final GameView view;
public GameController(GameView view) {
this.board = new Board();
this.view = view;
}
public void startGame() {
view.setVisible(true);
}
}