using System;
namespace GodotHostTest.Interfaces;
///
/// Description of a single level.
///
public interface ILevel
{
///
/// Time between successive spawns.
///
public TimeSpan TimeBetweenSpawns { get; }
///
/// Duration of a single spawn.
///
public TimeSpan SpawnDuration { get; }
}