allerta-vvf/server/resources/src/games.js

12 lines
211 B
JavaScript
Raw Normal View History

2021-03-26 16:23:19 +01:00
async function play(game){
/*
await import(`./games/${game}.js`)
.then(({default: Game}) => {
var game = new Game();
game.initialize();
});
*/
alert("TODO: add games");
}
window.play = play;