Files
glitchy-engine-beef/ScriptCore/Editor/ShowInEditorAttribute.cs
T

11 lines
200 B
C#

using System;
namespace GlitchyEngine.Editor;
public sealed class ShowInEditorAttribute : Attribute
{
public string DisplayName { get; set; } = null;
public ShowInEditorAttribute()
{}
}