jakubrada's picture
Upload 57 files
30f1ff2 verified
raw
history blame
173 Bytes
import { Game } from "./game.js";
// start the game when DOM is loaded
document.addEventListener("DOMContentLoaded", () => {
const game = new Game();
game.run();
});