mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
15 lines
319 B
C#
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;
|
|
}
|
|
}
|