1516171819202122
public GameView MainView = null; private Play play = null; // Model in MVC Architecture public GameController(Play play) { this.play = play; MainView = new Game(this); addListenersToModel(); }