mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
16 lines
313 B
C#
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; }
|
|
|
|
}
|
|
}
|
|
|