mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
- ScriptEngine: Added HasCustomAttribute- extension method - ScriptEngine: Added Application class
12 lines
243 B
C#
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
|
|
{
|
|
}
|