UNPKG

@drincs/pixi-vn

Version:

Pixi'VN is a npm package that provides various features for creating visual novels.

15 lines (13 loc) 361 B
/** * Set a flag to true or false. * @param name The name of the flag * @param value The value of the flag. */ declare function setFlag(name: string, value: boolean): void; /** * Get the value of a flag * @param name The name of the flag * @returns The value of the flag */ declare function getFlag(name: string): boolean; export { getFlag, setFlag };