Files
godot-host-test/Interfaces/IScore.cs
T
2026-07-29 11:05:27 +02:00

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