Add assets
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user