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