using R3; namespace GodotHostTest.Interfaces; /// /// The object that handles the current level. /// public interface ICurrentLevel { /// /// The current level. /// public ReadOnlyReactiveProperty LevelNumber { get; } /// /// Move to the next level. /// public void NextLevel(); }