16 lines
211 B
C#
16 lines
211 B
C#
|
using Obfuz.ObfusPasses;
|
|||
|
|
|||
|
namespace Obfuz
|
|||
|
{
|
|||
|
public interface IObfuscationPass
|
|||
|
{
|
|||
|
ObfuscationPassType Type { get; }
|
|||
|
|
|||
|
void Start();
|
|||
|
|
|||
|
void Stop();
|
|||
|
|
|||
|
void Process();
|
|||
|
}
|
|||
|
}
|