Spaces:
Sleeping
Sleeping
File size: 173 Bytes
30f1ff2 |
1 2 3 4 5 6 7 8 9 10 |
import { Game } from "./game.js";
// start the game when DOM is loaded
document.addEventListener("DOMContentLoaded", () => {
const game = new Game();
game.run();
});
|