INNER CODE UNIT · C#
ShowInPropertiesAttribute
GloriousPtr/ArcGameEngine · Arc-ScriptCore/src/Attributes/Attributes.cs:30
public class ShowInPropertiesAttribute : Attribute { }
/// <summary>
/// Adds a header before the field
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
[UsedImplicitly(ImplicitUseKindFlags.Default, ImplicitUseTargetFlags.WithMembers)]
public class HeaderAttribute : Attribute
{
internal string Title;
/// <summary>
/// Show header before the field
/// </summary>
/// <param name="message">Header string.</param>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public HeaderAttribute(string title)
{