13 lines
392 B
C#
13 lines
392 B
C#
using dnlib.DotNet.Emit;
|
|
using dnlib.DotNet;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Obfuz.ObfusPasses.CallObfus
|
|
{
|
|
public abstract class ObfuscatorBase : IObfuscator
|
|
{
|
|
public abstract void Obfuscate(MethodDef callingMethod, IMethod calledMethod, bool callVir, bool needCacheCall, List<Instruction> obfuscatedInstructions);
|
|
public abstract void Done();
|
|
}
|
|
}
|