Files
MadMin3r-UnconfuserEx/UnConfuserEx/Protections/Constants/IResolver.cs
T
2023-03-01 23:18:47 +00:00

13 lines
229 B
C#

using dnlib.DotNet;
using System.Collections.Generic;
namespace UnConfuserEx.Protections.Constants
{
internal interface IResolver
{
public void Resolve(MethodDef method, IList<MethodDef> instances);
}
}