namespace UHFPS.Runtime { public interface IHealthEntity : IDamagable, IHealable { /// /// Represents the current entity health. /// public int EntityHealth { get; set; } /// /// Represents the maximum entity health. /// public int MaxEntityHealth { get; set; } } }