Committed everything

This commit is contained in:
2021-06-30 21:39:19 +10:00
commit fcfa8e7213
525 changed files with 49440 additions and 0 deletions

View File

@@ -0,0 +1,20 @@

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;
}
}
}