Files
mROA/mROA.Codegen/Tools/ITemplateSection.cs
T
2025-03-29 19:31:10 +03:00

20 lines
345 B
C#

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