mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-16 22:27:45 +08:00
20 lines
445 B
C#
20 lines
445 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|