@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
27 lines (24 loc) • 563 B
TypeScript
import { LabelIdType } from './LabelIdType.js';
type ChoicesMadeType = {
/**
* The label id of the current step.
*/
labelId: LabelIdType;
/**
* The index of the step in the history.
*/
stepIndex: number;
/**
* The index of the choice made by the player.
*/
choiceIndex: number;
/**
* The sha1 of the step function.
*/
stepSha1: string;
/**
* The number of times the player made a choice for this step.
*/
madeTimes: number;
};
export type { ChoicesMadeType as default };