Files
godot-host-test/Interfaces/ILevel.cs
T
2026-07-21 21:53:18 +02:00

16 lines
328 B
C#

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