js13kgames2017-muri/src/act1.js

14 lines
383 B
JavaScript

(function() {
var act1 = {};
muri.get('bubble').talk(['Hi', 'I Think, this works ...', 'This looks kinda cool. I think , I can work with that to build a nice little adventure game with some clicky things.', 'Just need to find out a way to click on things.']);
act1.update = function() {
};
act1.render = function() {
};
muri.modules.push(act1);
}());