mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
19 lines
364 B
C#
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);
|
|
}
|
|
}
|