wave behavior and fixed explosion

This commit is contained in:
2026-05-16 19:48:48 +02:00
parent b3ae3e37ea
commit 1898d91a28
27 changed files with 355 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
using Godot;
namespace Movementtests.managers;
[GlobalClass]
public partial class WaveContent(SingleWave[] waves) : Resource
{
[Export] public SingleWave[] Waves { get; set; } = waves;
public WaveContent() : this([]) {}
}