21 lines
419 B
C#
21 lines
419 B
C#
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;
|
|
}
|
|
}
|
|
} |