UNPKG

yukinovel

Version:

Yukinovel is a simple web visual novel engine.

10 lines (9 loc) 197 B
import { Game } from '../core/Game.js'; /** * Tạo game mới * @param script Script của game * @returns Game instance */ export function createGame(script) { return new Game(script); }