Files
GhostEngine/Ghost.Editor.Core/Contracts/IInspectable.cs
2026-02-03 21:49:14 +09:00

13 lines
251 B
C#

using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
namespace Ghost.Editor.Core.Contracts;
public interface IInspectable
{
public IconSource? CreateIcon();
public UIElement? CreateHeader();
public UIElement? CreateInspector();
}