mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 05:34:36 +00:00
15 lines
274 B
C#
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;
|
|
}
|
|
}
|