broken composition and signals

This commit is contained in:
2026-01-17 17:02:31 +01:00
parent 0436053c62
commit 4ccdbc0ee6
22 changed files with 302 additions and 36 deletions

View File

@@ -1,8 +1,9 @@
using Godot;
using System;
namespace Movementtests.interfaces;
public interface IDamageable
{
void TakeDamage(RDamage damage);
event Action<float> DamageTaken;
float TakeDamage(RDamage damage);
}