19 lines
325 B
C#
19 lines
325 B
C#
namespace mROA.CodegenTools
|
|
{
|
|
public interface ITemplateSection
|
|
{
|
|
TemplateDocument Context { get; set; }
|
|
int TargetLength { get; }
|
|
}
|
|
|
|
public interface IBaking
|
|
{
|
|
string Bake();
|
|
}
|
|
|
|
|
|
public interface ITagged : ITemplateSection
|
|
{
|
|
string Tag { get; }
|
|
}
|
|
} |