20 lines
423 B
C#
20 lines
423 B
C#
using Ghost.Editor.Core.Inspector;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Ghost.Editor.Components;
|
|
|
|
//[CustomEditor(typeof(Hierarchy))]
|
|
internal class HierarchyEditor : ComponentEditor
|
|
{
|
|
public void Create(ComponentObject componentObject, StackPanel container)
|
|
{
|
|
}
|
|
|
|
public void Update(ComponentObject componentObject)
|
|
{
|
|
}
|
|
|
|
public void Destroy(ComponentObject componentObject)
|
|
{
|
|
}
|
|
} |