using XGame.Framework.Interfaces;
namespace XGame.Framework.UI.View
{
///
/// UI对象的管理接口
/// 管理UIPanel,UIController,UIViewModel等
///
public interface IUIView : IUpdate, ILateUpdate
{
///
/// Panel实例
///
IUIPanel Panel { get; }
///
/// 激活状态
///
bool Active { get; }
///
/// 激活
///
void Enable(object intent = null);
///
/// 隐藏
///
void Disable();
}
}