mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
Module.onRuntimeInitialized = function() {
|
|
// Créer une instance de WebServer
|
|
var startVm = Module.cwrap('storyvm_start', 'void', ['number', 'number']);
|
|
|
|
console.log("Starting VM with story");
|
|
startVm(0, 0);
|
|
|
|
|
|
};
|