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
+8
View File
@@ -1,6 +1,14 @@
namespace GodotHostTest.Interfaces;
/// <summary>
/// An object that provides the information about a certain level.
/// </summary>
public interface ILevelDataProvider
{
/// <summary>
/// Return the level data for a specific level.
/// </summary>
/// <param name="levelNumber">Level number.</param>
/// <returns>The information about a certain level.</returns>
public ILevel GetLevelData(int levelNumber);
}