@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
15 lines (12 loc) • 404 B
text/typescript
import { ICanvasSpriteBaseMemory } from './ICanvasSpriteMemory.mjs';
import 'pixi.js';
import '../../types/EventIdType.mjs';
import './ICanvasBaseMemory.mjs';
import './ITextureMemory.mjs';
/**
* The memory of the image. It uses for save the state of the image.
*/
interface ICanvasImageMemory extends ICanvasSpriteBaseMemory {
imageLink: string;
}
export type { ICanvasImageMemory as default };