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