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

14 lines
440 B
C#

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);
}