Files
glitchy-engine-beef/ScriptCore/Editor/HideInEditorAttribute.cs
T
Simon Lübeß e69e1b5526 Show Buttons in entity editor
- ScriptEngine: Added HasCustomAttribute- extension method
- ScriptEngine: Added Application class
2023-12-12 13:38:29 +01:00

12 lines
243 B
C#

using System;
namespace GlitchyEngine.Editor;
/// <summary>
/// Specifies, that the field should not be visible in the editor.
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public sealed class HideInEditorAttribute : Attribute
{
}