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,7 +1,9 @@
using R3;
namespace GodotHostTest.Interfaces;
public interface ICurrentLevel
{
public int LevelNumber { get; }
public ReadOnlyReactiveProperty<int> LevelNumber { get; }
public void NextLevel();
}