#Yes, that is exactly what i am doing.

1 messages · Page 1 of 1 (latest)

tacit basin
lime canyon
#

Weird way to respond but ok, confused me then

#

You need to enclose that List in a class which is marked as [System.Serializable]

tacit basin
#

So add that before the Scores class?

lime canyon
#

Basically your List of Scores also needs to be inside a class

#
[System.Serializable]
public class Save 
{
  public List<Scores> myScores = new List<Scores>();
}
#

Then you'd use that new Save object