chore: cleanup

This commit is contained in:
redglow
2026-07-29 11:05:27 +02:00
parent 2c0a3f47a4
commit 5c4519ed26
20 changed files with 110 additions and 70 deletions
+10
View File
@@ -2,8 +2,18 @@ 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();
}