Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Ink / InkLibs / InkCompiler / ParsedHierarchy / IWeavePoint.cs
@Rackday Rackday on 29 Oct 313 bytes Major Update
using System.Collections.Generic;

namespace Ink.Parsed
{
    public interface IWeavePoint
    {
        int indentationDepth { get; }
        Runtime.Container runtimeContainer { get; }
        List<Parsed.Object> content { get; }
        string name { get; }
        Identifier identifier { get; }

    }
}