anxiety/scripts/main.js

15 lines
217 B
JavaScript
Raw Normal View History

2019-02-18 20:59:10 +00:00
// Load assets
Loader.addScenes([
2019-04-18 11:40:22 +00:00
"scenes/intro.md",
"scenes/test.md",
"scenes/test-outro.md"
2019-02-18 20:59:10 +00:00
]);
Loader.load().then(function(){
Game.init();
Game.start();
2019-04-18 11:40:22 +00:00
// Outro
SceneSetup.act1();
Game.goto("act1i");
2019-02-18 20:59:10 +00:00
});