shyguys_2 / src /index.js
theo-michel's picture
Upload 51 files
eae3d7c 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();
});