feat: turrents and explosions

This commit is contained in:
redglow
2026-07-21 21:53:18 +02:00
parent e7dbb9cabb
commit bc7297c6bc
18 changed files with 277 additions and 15 deletions
+5
View File
@@ -7,7 +7,12 @@ namespace GodotHostTest.Game.Level;
[GlobalClass]
public partial class LevelData : Resource, ILevel
{
[Export] public double SpawnDuration;
[Export] public double TimeBetweenSpawns;
/// <inheritdoc />
TimeSpan ILevel.TimeBetweenSpawns => TimeSpan.FromSeconds(TimeBetweenSpawns);
/// <inheritdoc />
TimeSpan ILevel.SpawnDuration => TimeSpan.FromSeconds(SpawnDuration);
}