Files
2026-07-29 11:05:27 +02:00

19 lines
395 B
C#

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