mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
311 B
C#
16 lines
311 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public interface ICompilationStep
|
|
{
|
|
ValueTask<Directive?> Run(RawSourceFile source);
|
|
IState GetState();
|
|
}
|
|
|
|
public interface IState
|
|
{
|
|
ICompilationStep CreateStep(ACompiler compiler);
|
|
}
|
|
}
|