Files
godot-host-test/Interfaces/IScore.cs
T
redglow e7dbb9cabb .
2026-07-21 20:49:24 +02:00

14 lines
255 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 Observable<int> Score { get; }
}