using System.Collections.Generic; // Классы для хранения данных. Не являются MonoBehaviour. [System.Serializable] public class HighScoreEntry { public string playerName; public int score; } [System.Serializable] public class HighScoreList { public List scores = new List(); }