obfuz/Editor/ObfusPass/IObfuscationPass.cs

18 lines
337 B
C#
Raw Normal View History

2025-04-21 09:57:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz
{
public interface IObfuscationPass
{
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
}
}