Files
Mementos/Unity/Alternate Genre Jam/Assets/Ink/InkLibs/InkCompiler/ParsedHierarchy/IncludedFile.cs
2021-06-30 21:39:19 +10:00

21 lines
437 B
C#

namespace Ink.Parsed
{
public class IncludedFile : Parsed.Object
{
public Parsed.Story includedStory { get; private set; }
public IncludedFile (Parsed.Story includedStory)
{
this.includedStory = includedStory;
}
public override Runtime.Object GenerateRuntimeObject ()
{
// Left to the main story to process
return null;
}
}
}