Files
godot-host-test/Interfaces/IScore.cs
T
2026-07-17 09:59:07 +02:00

12 lines
232 B
C#

namespace GodotHostTest.Interfaces;
/// <summary>
/// An object that keeps track of the score.
/// </summary>
public interface IScore
{
/// <summary>
/// The current score.
/// </summary>
public int Score { get; }
}