19 lines
396 B
C#
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; }
|
|
} |