18 lines
287 B
C#
Raw Normal View History

2024-12-14 18:27:59 +08:00
using System.Collections.Generic;
using System.Linq;
namespace QFramework
{
public class UIDefaultPanel : UIPanel
{
protected override void OnInit(IUIData uiData = null)
{
}
protected override void OnClose()
{
}
}
}