Files
2026-03-03 05:27:03 +05:00

16 lines
359 B
C#

using System;
using UnityEngine;
namespace ThunderWire.Attributes
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public class DocsAttribute : PropertyAttribute
{
public string docsLink;
public DocsAttribute(string link)
{
docsLink = link;
}
}
}