obfuz/Editor/DynamicProxy/DefaultDynamicProxyObfuscat...

15 lines
417 B
C#
Raw Normal View History

2025-04-24 11:58:22 +08:00
using dnlib.DotNet.Emit;
using dnlib.DotNet;
using System.Collections.Generic;
namespace Obfuz.DynamicProxy
{
public class DefaultDynamicProxyObfuscator : DynamicProxyObfuscatorBase
{
public override void Obfuscate(MethodDef callingMethod, IMethod calledMethod, bool callVir, List<Instruction> obfuscatedInstructions)
{
// Default implementation does nothing
}
}
}