mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 10:34:27 +11:00
Committed everything
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user