@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
25 lines (22 loc) • 585 B
text/typescript
import { GameStepState } from '@drincs/pixi-vn';
import { H as HistoryStep, O as OpenedLabel } from './OpenedLabel-Dgkgemkv.cjs';
/**
* Interface exported step data
*/
interface NarrationGameState {
/**
* @deprecated moved to HistoryManagerStatic
*/
stepsHistory?: HistoryStep[];
openedLabels: OpenedLabel[];
/**
* @deprecated use stepCounter
*/
lastStepIndex?: number;
stepCounter: number;
/**
* @deprecated moved to HistoryManagerStatic
*/
originalStepData?: GameStepState;
}
export type { NarrationGameState as N };