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

15 lines
239 B
C#

using System;
namespace Needle.Engine
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
public class Priority : Attribute
{
public readonly int Value;
public Priority(int value)
{
Value = value;
}
}
}