using System; namespace Core { public interface IHealthView { int CurrentHP { get; } int MaxHP { get; } bool IsDead { get; } event Action HPChanged; // event Action Died; } }