UnityExplorer/src/UI/ExplorerUIBase.cs

16 lines
359 B
C#
Raw Normal View History

2022-05-26 06:19:50 +10:00
using UniverseLib.UI;
2022-04-14 01:25:59 +10:00
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);
}
}
}