obfuz/Editor/IObfuscationPass.cs

21 lines
405 B
C#
Raw Normal View History

2025-05-12 22:01:35 +08:00
using Obfuz.ObfusPasses;
using System;
2025-04-21 09:57:34 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz
2025-04-21 09:57:34 +08:00
{
public interface IObfuscationPass
{
2025-05-12 22:01:35 +08:00
ObfuscationPassType Type { get; }
2025-05-04 19:24:14 +08:00
void Start(ObfuscationPassContext ctx);
2025-04-21 09:57:34 +08:00
2025-05-04 19:24:14 +08:00
void Stop(ObfuscationPassContext ctx);
2025-04-21 09:57:34 +08:00
2025-05-04 19:24:14 +08:00
void Process(ObfuscationPassContext ctx);
2025-04-21 09:57:34 +08:00
}
}