mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
11 lines
200 B
C#
11 lines
200 B
C#
using System;
|
|
|
|
namespace GlitchyEngine.Editor;
|
|
|
|
public sealed class ShowInEditorAttribute : Attribute
|
|
{
|
|
public string DisplayName { get; set; } = null;
|
|
|
|
public ShowInEditorAttribute()
|
|
{}
|
|
} |