Update asset database

This commit is contained in:
2026-01-29 14:03:24 +09:00
parent 8a5795069f
commit e71851550b
16 changed files with 879 additions and 646 deletions

View File

@@ -1,5 +1,14 @@
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
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();
}