Files
glitchy-engine-beef/ScriptCore/Editor/CustomEditorAttribute.cs
T
Simon Lübeß 13baf2f4bc ScriptCore: Show Custom Editor
Implemented basic Dictionary editor
2024-01-05 15:46:54 +01:00

15 lines
319 B
C#

using System;
namespace GlitchyEngine.Editor;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = true)]
public sealed class CustomEditorAttribute : Attribute
{
public Type Type { get; private set; }
public CustomEditorAttribute(Type type)
{
Type = type;
}
}