12 lines
232 B
C#
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; }
|
|
} |