Esempio n. 1
0
 private void displayStart(int game)
 {
     gameName.text        = info.gameNames[game];
     gameDescription.text = info.descriptions[game];
     start.onClick.AddListener(delegate { startGame(game + 1); });
     maxDiff             = info.maxDiff(game);
     difficulty.value    = maxDiff;
     startScreen.enabled = true;
 }