2024-11-16 10:12:24 +01:00
|
|
|
public class GameController {
|
|
|
|
private GameView view;
|
|
|
|
|
|
|
|
public GameController(GameView view) {
|
|
|
|
this.view = view;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void startGame() {
|
2024-11-16 18:45:51 +01:00
|
|
|
System.out.println("Bienvenue dans Dorfromantik simplifié !");
|
|
|
|
view.showTile();
|
2024-11-16 10:12:24 +01:00
|
|
|
}
|
|
|
|
}
|