Exemplo n.º 1
0
 //set one of the top 10 scores
 //idx is the score index, scoreArray is a string[5] with [name,time,grade,accuracy,kills]
 void SetScoreForOneRow(int idx, OneScoreFromTopTen scoreArray)
 {
     Debug.Log("Top " + idx.ToString() + " score is " + scoreArray.ToString());
     topPlaces[idx].LoadFromOneStringArray(scoreArray);
 }