broken composition and signals

This commit is contained in:
2026-01-17 17:02:16 +01:00
parent 6b97c226f1
commit 0436053c62
3 changed files with 10 additions and 2 deletions

View File

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