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

9 lines
264 B
C#

namespace mROA.Codegen.Tools.Reading
{
public interface ISectionReader
{
string TemplateText { get; set; }
int GetNextSectionIndex(int currentIndex);
ITemplateSection ExtractSection(ref int index, TemplateDocument document);
}
}