2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-02 01:01:54 +00:00
Files
OpenAssetTools/src/ZoneCodeGenerator/Parsing/IIncludingParsingStream.cs

13 lines
409 B
C#

namespace ZoneCodeGenerator.Parsing
{
interface IIncludingParsingStream : IParsingFileStream
{
/// <summary>
/// Pushes back current file and the position in it to read from another file now instead.
/// After completion returns back to the previous file.
/// </summary>
/// <param name="filename"></param>
void IncludeFile(string filename);
}
}