mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-14 07:37:06 +08:00
Use UniverseLib PanelBase/PanelDragger
This commit is contained in:
19
src/UI/ExplorerUIBase.cs
Normal file
19
src/UI/ExplorerUIBase.cs
Normal file
@ -0,0 +1,19 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user