1 messages · Page 1 of 1 (latest)
Weird way to respond but ok, confused me then
You need to enclose that List in a class which is marked as [System.Serializable]
[System.Serializable]
So add that before the Scores class?
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
Save