namespace Zennysoft.Game.Abstractions; public interface IHealthComponent { int MaximumHP { get; } int CurrentHP { get; set; } }