Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/Tasks/HelpURLAttribute.cs
2025-08-13 09:26:42 +08:00

24 lines
350 B
C#

using System;
namespace BehaviorDesigner.Runtime.Tasks
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class HelpURLAttribute : Attribute
{
private readonly string mURL;
public string URL
{
get
{
return mURL;
}
}
public HelpURLAttribute(string url)
{
mURL = url;
}
}
}