Ejemplo n.º 1
0
    //Set the UI's txtScore.
    public static void UpdateTextScore(int score)
    {
        if (score < 0)
        {
            return;
        }

        else
        {
            UITween.UpdateTextScore(score);
        }
    }