@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
27 lines (24 loc) • 564 B
text/typescript
import { LabelIdType } from './LabelIdType.cjs';
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 };