16 lines
328 B
C#
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; }
|
|
} |