7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
|
|
import { Game } from './Game.js';
|
||
|
|
|
||
|
|
window.addEventListener('DOMContentLoaded', () => {
|
||
|
|
const game = new Game();
|
||
|
|
game.start();
|
||
|
|
});
|