Files
AR-Menu/Library/PackageCache/com.needle.engine-exporter@8c046140a1d9/Common/Runtime/Attributes/CustomComponentHeaderLinkAttribute.cs
2025-11-30 08:35:03 +02:00

16 lines
339 B
C#

using System;
namespace Needle.Engine
{
public class CustomComponentHeaderLinkAttribute : Attribute
{
public readonly string IconIconPathOrGuid;
public readonly string Url;
public CustomComponentHeaderLinkAttribute(string iconPathOrGuid, string url)
{
this.IconIconPathOrGuid = iconPathOrGuid;
this.Url = url;
}
}
}