{
let K= KABOOM({
width: 480,
height: 480,
canvas: document.getElementById("kb"),
});
K.loadFont("CP437", await FileAttachment("CP437_9x16.png").url(), 9, 16, asciistring);
K.loadFont("aquarius" , await FileAttachment("aquarius_8x8.png").url(), 8,8, asciistring)
K.scene("main", () => {
K.add([
K.text("hello world ♥ with CP437 font will this show up?",32,{
font: "CP437"
}),
K.pos(0,100)
]);
K.add([
K.text("hello world with default font"),
K.pos(0,10)
]);
K.add([
K.text("aquarius font with ♥", 16, {
font: "aquarius"
}),
K.pos(0,40)
])
});
K.start("main");
}