Files
Fishing2/Assets/Scripts/NBC/UI/Runtime/Component/IUIPanel.cs
2025-05-26 00:06:37 +08:00

37 lines
842 B
C#

using UnityEngine;
namespace NBC
{
public interface IUIPanel
{
FairyGUI.GComponent ContentPane { get; }
// string UILayer { get; }
/// <summary>
/// 模块id
/// </summary>
int Id { get; }
bool IsTop { get; }
bool IsShowing { get; }
bool IsCanVisible { get; }
bool IsDotDel { get; }
bool IsModal { get; }
bool IsShowCursor { get; }
void SetUIManager(UIManager kit);
void SetData(object args);
object GetData();
string[] GetDependPackages();
System.Collections.Generic.Dictionary<string, string> GetLanguageConfig();
void Init();
void Show();
void Hide();
void Update();
void HideImmediately();
void Refresh();
void Dispose();
}
}