Files
SAE31_2024/TestV1/GameController.java

13 lines
281 B
Java
Raw Normal View History

public class GameController {
private GameView view;
public GameController(GameView view) {
this.view = view;
}
public void startGame() {
System.out.println("Bienvenue dans Dorfromantik simplifié !");
view.showTile();
}
}