shyguys_2 / src /index.js
theo-michel's picture
Initial commit with latest state
426a708
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();
});