Files
MovementTests/interfaces/IHealthable.cs

7 lines
142 B
C#

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