mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 21:04:01 +00:00
17 lines
373 B
C#
17 lines
373 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);
|
|
}
|
|
}
|