BfRun/BrRun/BrInterpreterBase.cs

16 lines
340 B
C#

namespace BrRun;
public abstract class BrInterpreterBase
{
public BrInterpretContext Context { get; set; }
public string FilePath { get; set; }
public BrInterpreterBase(string filePath, BrInterpretContext context)
{
FilePath = filePath;
Context = context;
}
public abstract void Interpret();
}