This commit is contained in:
Westin Miller
2017-12-10 02:32:59 -08:00
parent 834395bdc3
commit d2adbecc44

View File

@@ -11,10 +11,10 @@ namespace Torch.Managers.PatchManager
/// Only works for core assemblies loaded by Torch (non-plugins). /// Only works for core assemblies loaded by Torch (non-plugins).
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Event shims should be singleton, and have one method of signature <i>void Patch(PatchContext)</i> /// Patch shims should be singleton, and have one method of signature <i>void Patch(PatchContext)</i>
/// </remarks> /// </remarks>
[AttributeUsage(AttributeTargets.Class)] [AttributeUsage(AttributeTargets.Class)]
internal class PatchShimAttribute : Attribute public class PatchShimAttribute : Attribute
{ {
} }
} }