Files
unity-application/Assets/Architecture/Scripts/Score.cs
Jelle De Geest 163eb40c0f Sprint 6
2023-05-24 21:08:16 +02:00

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;
}