showChooseLevelsView method

void showChooseLevelsView (int nrAvailableLevels, int reachedLevel)

Shows the 'ChooseLevelsView' and activates the button click listener for listenGoToMenuButton listenAllLevelButtons

Implementation

void showChooseLevelsView(int nrAvailableLevels, int reachedLevel) {
  MenuView.show().chooseLevelsView(nrAvailableLevels, reachedLevel).render();
  this.listenGoToMenuButton();
  this.listenAllLevelButtons(reachedLevel);
}