0fda28526f
* Implement patch abstractions and patch loader using an interface * remove patch loader * rename patch class
28 lines
605 B
C#
28 lines
605 B
C#
namespace SPTarkov.Reflection.Patching
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class PatchPrefixAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class PatchPostfixAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class PatchTranspilerAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class PatchFinalizerAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class PatchIlManipulatorAttribute : Attribute
|
|
{
|
|
}
|
|
}
|