obfuz/Editor/IObfuscationPass.cs

21 lines
327 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; }
void Start();
2025-04-21 09:57:34 +08:00
void Stop();
2025-04-21 09:57:34 +08:00
void Process();
2025-04-21 09:57:34 +08:00
}
}