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(); } }