20 lines
315 B
C#
20 lines
315 B
C#
using System;
|
|
|
|
/// <summary>
|
|
/// Score class
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Score
|
|
{
|
|
/// <summary>
|
|
/// The actual score
|
|
/// </summary>
|
|
public int scoreValue;
|
|
|
|
/// <summary>
|
|
/// The time when the score is achieved, in string format
|
|
/// </summary>
|
|
public string time;
|
|
}
|
|
|