forked from Misaki/GhostEngine
10 lines
216 B
C#
10 lines
216 B
C#
namespace Ghost.Editor.Core.Inspector;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CustomEditorAttribute(Type targetType) : Attribute
|
|
{
|
|
internal Type TargetType
|
|
{
|
|
get;
|
|
} = targetType;
|
|
} |