Files
MadMin3r-UnconfuserEx/UnConfuserEx/Protections/IProtection.cs
T
2023-03-01 23:18:47 +00:00

19 lines
364 B
C#

using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnConfuserEx.Protections
{
internal interface IProtection
{
string Name { get; }
public bool IsPresent(ref ModuleDefMD module);
public bool Remove(ref ModuleDefMD module);
}
}