File size: 173 Bytes
426a708
 
 
 
 
 
 
 
 
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();
});