skyscraper8/skyscraper8/Skyscraper/Plugins/PluginPriorityAttribute.cs
feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

16 lines
321 B
C#

using System;
namespace skyscraper5.Skyscraper.Plugins
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class PluginPriorityAttribute : Attribute
{
public int Priority { get; }
public PluginPriorityAttribute(int priority)
{
Priority = priority;
}
}
}