UNPKG

@drincs/pixi-vn

Version:

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

28 lines (26 loc) 534 B
/** * CharacterBaseModelProps is an interface that is used to create a character model. */ interface CharacterBaseModelProps { /** * The name of the character. */ name: string; /** * The surname of the character. */ surname?: string; /** * The age of the character. */ age?: number; /** * The icon of the character. */ icon?: string; /** * The color of the character. */ color?: string; } export type { CharacterBaseModelProps as default };