19 lines
395 B
C#
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();
|
|
} |