INNER CODE UNIT · C#

HeaderAttribute

GloriousPtr/ArcGameEngine · Arc-ScriptCore/src/Attributes/Attributes.cs:37

	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)
		{
			Title = title;
		}
	}

	/// <summary>
	/// Shows the tooltip when mouse is hovered over the field.
	/// </summary>

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…