14 lines
269 B
C#
14 lines
269 B
C#
using R3;
|
|
|
|
namespace GodotHostTest.Interfaces;
|
|
|
|
/// <summary>
|
|
/// An object that keeps track of the score.
|
|
/// </summary>
|
|
public interface IScore
|
|
{
|
|
/// <summary>
|
|
/// The current score.
|
|
/// </summary>
|
|
public ReadOnlyReactiveProperty<int> Score { get; }
|
|
} |