14 lines
440 B
C#
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);
|
|
} |