BassoonPlayer Import Module Example

    import("./script/bassoonplayer-min.js").then(module=>{
        let BassoonPlayer = module.default;
        BassoonPlayer.load("../demomods/tokyo.mod").then(result=>{
            let button = document.createElement("button");
            button.innerText = "Play Tokyo.mod";
            button.onclick = function () {
                BassoonPlayer.play();
            };
            document.body.appendChild(button);
        })
    })