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,7 +1,6 @@
namespace Movementtests.interfaces;
public interface IKillable
public interface IHealthable
{
float CurrentHealth { get; set; }
void ReduceHealth(float amount);
}