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