13 lines
281 B
Java
13 lines
281 B
Java
|
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();
|
||
|
}
|
||
|
}
|