mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-15 13:57:31 +08:00
16 lines
359 B
C#
16 lines
359 B
C#
using UniverseLib.UI;
|
|
using UniverseLib.UI.Panels;
|
|
|
|
namespace UnityExplorer.UI
|
|
{
|
|
internal class ExplorerUIBase : UIBase
|
|
{
|
|
public ExplorerUIBase(string id, Action updateMethod) : base(id, updateMethod) { }
|
|
|
|
protected override PanelManager CreatePanelManager()
|
|
{
|
|
return new UEPanelManager(this);
|
|
}
|
|
}
|
|
}
|