Files
SAE31_2024/TestV1/GameController.java
2024-11-16 18:45:51 +01:00

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