etienneLefranc's picture
Upload 50 files
470f0e2 verified
raw
history blame contribute delete
182 Bytes
import { Game } from "./game.js";
// start the game when DOM is loaded
document.addEventListener("DOMContentLoaded", () => {
const game = new Game();
game.run();
});