mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
21 lines
437 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|