9 lines
263 B
C#
9 lines
263 B
C#
namespace mROA.CodegenTools.Reading
|
|
{
|
|
public interface ISectionReader
|
|
{
|
|
string TemplateText { get; set; }
|
|
int GetNextSectionIndex(int currentIndex);
|
|
ITemplateSection ExtractSection(ref int index, TemplateDocument document);
|
|
}
|
|
} |