js13kgames2017-muri/src/act1.js
2017-08-22 15:03:49 +02:00

20 lines
397 B
JavaScript

(function() {
var act1 = {};
muri.get('bubble')
.story([
[['Beep ...', 'Click, Click, Click ...'], [20, 15]],
[['Urgh ... ....', 'What is wrong with me? ...'], [5, 40]]
]).then(function() {
console.log("asdf");
})
act1.update = function() {
};
act1.render = function() {
};
muri.modules.push(act1);
}());