16 lines
366 B
C#
16 lines
366 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method, AllowMultiple = true)]
|
|
public class SectionHeaderAttribute : Attribute
|
|
{
|
|
public readonly string title;
|
|
|
|
public SectionHeaderAttribute(string title)
|
|
{
|
|
this.title = title;
|
|
}
|
|
}
|
|
} |