@drincs/pixi-vn-ink
Version:
Pixi'VN gives you the ability to write your own narrative using Ink
15 lines (13 loc) • 558 B
TypeScript
/**
* https://github.com/inkle/ink/blob/master/Documentation/ink_JSON_runtime_format.md#read-count
*
* Obtain the read count of a particular named knot, stitch, choice or gather. Note that this is implemented as a Variable Reference with particular flag in the C# ink runtime.
*
* Example:
*
* {"CNT?": "the_hall.light_switch"} - gets the read count of the container at the given path. For example, it might be a stitch named light_switch in a knot called the_hall.
*/
type ReadCount = {
"CNT?": string;
};
export type { ReadCount as default };