Files
Mementos/Unity/Alternate Genre Jam/Assets/Ink/InkLibs/InkCompiler/ParsedHierarchy/IWeavePoint.cs
2021-06-30 21:39:19 +10:00

16 lines
313 B
C#

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