This commit is contained in:
redglow
2026-07-21 20:49:24 +02:00
parent c540b99eb6
commit e7dbb9cabb
31 changed files with 394 additions and 76 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
using R3;
namespace GodotHostTest.Interfaces;
/// <summary>
@@ -8,5 +10,5 @@ public interface IScore
/// <summary>
/// The current score.
/// </summary>
public int Score { get; }
public Observable<int> Score { get; }
}