using R3; namespace GodotHostTest.Interfaces; /// /// An object that keeps track of the score. /// public interface IScore { /// /// The current score. /// public ReadOnlyReactiveProperty Score { get; } }