using System; /// /// Score class /// [Serializable] public class Score { /// /// The actual score /// public int scoreValue; /// /// The time when the score is achieved, in string format /// public string time; }