test pour afficher les tuiles d'une manière différente

This commit is contained in:
2024-11-16 10:12:24 +01:00
parent dd14eaab2e
commit 22cf8adf3f
9 changed files with 238 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
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();
}
}