Files
MovementTests/interfaces/IKillable.cs

7 lines
144 B
C#

namespace Movementtests.interfaces;
public interface IHealthable
{
float CurrentHealth { get; set; }
void ReduceHealth(float amount);
}