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 obfuscatedInstructions); public abstract void Done(); } }