Files
GhostEngine/Ghost.Editor.Core/Inspector/CustomEditorAttribute.cs

10 lines
216 B
C#

namespace Ghost.Editor.Core.Inspector;
[AttributeUsage(AttributeTargets.Class)]
public class CustomEditorAttribute(Type targetType) : Attribute
{
internal Type TargetType
{
get;
} = targetType;
}