UNPKG

yukinovel

Version:

Yukinovel is a simple web visual novel engine.

15 lines (14 loc) 351 B
/** * Tạo nhân vật mới * @param name Tên nhân vật * @param options Các tùy chọn cho nhân vật * @returns Character object */ export function createCharacter(name, options = {}) { return { name, image: options.image, color: options.color || '#ffffff', emotions: options.emotions || {} }; }