Files
MovementTests/interfaces/IHealthable.cs
Minimata 561e026834
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 20s
Create tag and build when new code gets to main / Export (push) Successful in 10m24s
ok so this should be the way to go
2026-01-17 21:51:57 +01:00

11 lines
244 B
C#

using System;
namespace Movementtests.interfaces;
public interface IHealthable
{
event Action<IHealthable, float> HealthChanged;
event Action<IHealthable> HealthDepleted;
void ReduceHealth(IDamageable source, float amount);
}