13 lines
283 B
C#
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
|
|
{
|
|
|
|
}
|
|
} |