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

13 lines
283 B
C#

using System;
namespace Needle.Engine
{
/// <summary>
/// Add to a class that is a deployment component to be displayed in the Needle Engine Build window
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class DeploymentComponentAttribute : Attribute
{
}
}