Files
GhostEngine/Ghost.Editor.Core/SceneGraph/SceneNode.cs
2026-01-29 14:03:24 +09:00

15 lines
434 B
C#

using Ghost.Editor.Core.Inspector;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
namespace Ghost.Editor.Core.SceneGraph;
public sealed partial class SceneNode : SceneGraphNode, IInspectable
{
public IconSource? Icon => throw new NotImplementedException();
public UIElement? HeaderContent => throw new NotImplementedException();
public UIElement? InspectorContent => throw new NotImplementedException();
}