Files
LegacyWeaveLoader/WeaveLoader.API/Mixins/MixinAttribute.cs
2026-03-10 17:45:25 -05:00

15 lines
274 B
C#

using System;
namespace WeaveLoader.API.Mixins;
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public sealed class MixinAttribute : Attribute
{
public string Target { get; }
public MixinAttribute(string target)
{
Target = target;
}
}