ScriptCore: Show Custom Editor

Implemented basic Dictionary editor
This commit is contained in:
Simon Lübeß
2024-01-05 15:46:54 +01:00
parent 9da675e4bb
commit 13baf2f4bc
3 changed files with 209 additions and 14 deletions
@@ -0,0 +1,14 @@
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;
}
}