1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Snake/sources/js/index.js
2021-03-18 10:29:12 +01:00

8 lines
211 B
JavaScript

import { Game } from "./Game.js"
const game = new Game(document.getElementById("canvas"), {snakeSpeed: 200});
document.addEventListener('DOMContentLoaded', function() {
M.AutoInit();
game.start();
});