Files
bluflame/intromat/Intromat/Model/Compiler/IStatement.cs
2026-04-18 22:31:51 +02:00

10 lines
240 B
C#

using System.Text;
namespace Intromat.Model.Compiler
{
public interface IStatement
{
void Compile(CompilerContext context, StringBuilder sb);
void CompileHeader(CompilerContext context, StringBuilder sb);
}
}