using System; namespace UILib { public interface IUIBloodGrid : IUIWidget, IUIRect { int MAXHP { get; } void SetMAXHP(int maxHp); } }