11 lines
244 B
C#
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);
|
|
} |