18 lines
287 B
C#
18 lines
287 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
|
||
|
|
namespace QFramework
|
||
|
|
{
|
||
|
|
public class UIDefaultPanel : UIPanel
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
protected override void OnInit(IUIData uiData = null)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void OnClose()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|