mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
13 lines
229 B
C#
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);
|
|
|
|
}
|
|
}
|