Ejemplo n.º 1
0
    public int CheckHighScores(int newScore)
    {
        int rank = highScores.CheckHighScore(newScore);

        if (rank != -1)
        {
            Instantiate(newHSNC, new Vector3(0f, 0f, 0f), Quaternion.identity);
        }
        return(rank);
    }