Add assets
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Cainos.LucidEditor
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
||||
public class IndentAttribute : Attribute
|
||||
{
|
||||
public readonly int indent;
|
||||
|
||||
public IndentAttribute()
|
||||
{
|
||||
this.indent = 1;
|
||||
}
|
||||
|
||||
public IndentAttribute(int indent)
|
||||
{
|
||||
this.indent = indent;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user