12 lines
208 B
Java
12 lines
208 B
Java
public class GameController {
|
|
private GameView view;
|
|
|
|
public GameController(GameView view) {
|
|
this.view = view;
|
|
}
|
|
|
|
public void startGame() {
|
|
view.showTile();
|
|
}
|
|
}
|