Files
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
{
}
}