Files
mROA/mROA.Codegen/Tools/ITemplateSection.cs
2025-06-28 22:38:09 +03:00

20 lines
344 B
C#

using System;
namespace mROA.CodegenTools
{
public interface ITemplateSection : ICloneable
{
TemplateDocument Context { get; set; }
int TargetLength { get; }
}
public interface IBaking
{
string Bake();
}
public interface ITagged : ITemplateSection
{
string Tag { get; }
}
}