Files
godot-host-test/Interfaces/ILevel.cs
T
2026-07-29 11:05:27 +02:00

19 lines
396 B
C#

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