mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
13 lines
409 B
C#
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);
|
|
}
|
|
}
|