namespace GodotHostTest.Interfaces;
///
/// An object that provides the information about a certain level.
///
public interface ILevelDataProvider
{
///
/// Return the level data for a specific level.
///
/// Level number.
/// The information about a certain level.
public ILevel GetLevelData(int levelNumber);
}