Spaces:
Sleeping
Sleeping
import { Game } from "./game.js"; | |
console.log(process.env.HF_KEY); | |
// start the game when DOM is loaded | |
document.addEventListener("DOMContentLoaded", () => { | |
const game = new Game(); | |
game.run(); | |
}); | |