Пример #1
0
    public void NewRound()
    {
        scores.SaveScore();

        if (round == totalRounds)
        {
            SceneManager.LoadScene(2);
        }
        else
        {
            round++;
            sentences      = tg.GenerateMultiple(sentencePerRound);
            roundText.text = "Round: " + round;
        }
    }