Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Ink / InkLibs / InkCompiler / ParsedHierarchy / IncludedFile.cs
@Rackday Rackday on 29 Oct 437 bytes Major Update
  1. namespace Ink.Parsed
  2. {
  3. public class IncludedFile : Parsed.Object
  4. {
  5. public Parsed.Story includedStory { get; private set; }
  6. public IncludedFile (Parsed.Story includedStory)
  7. {
  8. this.includedStory = includedStory;
  9. }
  10. public override Runtime.Object GenerateRuntimeObject ()
  11. {
  12. // Left to the main story to process
  13. return null;
  14. }
  15. }
  16. }