You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

script.js 240B

1234567
  1. let Game = require("./game.js");
  2. document.querySelector("#startGameBtn").addEventListener("click", () => {
  3. view("game");
  4. let sock = new SockSugar("ws://localhost:8081");
  5. let game = new Game(sock, document.getElementById("canvas"));
  6. });