Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Ink / InkLibs / InkCompiler / ParsedHierarchy / IWeavePoint.cs
@Rackday Rackday on 29 Oct 313 bytes Major Update
  1. using System.Collections.Generic;
  2. namespace Ink.Parsed
  3. {
  4. public interface IWeavePoint
  5. {
  6. int indentationDepth { get; }
  7. Runtime.Container runtimeContainer { get; }
  8. List<Parsed.Object> content { get; }
  9. string name { get; }
  10. Identifier identifier { get; }
  11. }
  12. }