Files

14 lines
249 B
C#
Raw Permalink Normal View History

2026-08-27 11:21:58 -06:00
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace Obfuscator.Obfuscator.Mutation2;
public interface iMutation
{
void Process(MethodDef method, ref int index);
void Prepare(TypeDef type);
bool Supported(Instruction instr);
}