Exemple #1
0
    public void AddScoreToHighScoreList()
    {
        PlayerHighScore newHighScore = new PlayerHighScore(_nameField.text, _finalScore.Value);

        _highScoreManager.AddNewHighScore(newHighScore);
        _nameField.text = string.Empty;
        _newHighScore.SetActive(false);
    }