Skip to content

Commit

Permalink
Update server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauravkr1806 authored Sep 3, 2024
1 parent 9097043 commit e67a8b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ let btn = document.querySelector(".btn");
let btn1 = document.querySelector(".btn1");
let msgContainer = document.querySelector(".msgContainer");
let para = document.querySelector("#para");
let Gametime = new Audio("./Sound/Background.mp3");
let Gamedraw = new Audio("./Sound/Drawgame.mp3");
let GameWinner = new Audio("./Sound/Winner.mp3");
let turn1 = new Audio("./Sound/move1.mp3");
let turn2 = new Audio("./Sound/move2.mp3");
let Gametime = new Audio("./Sounds/Background.mp3");
let Gamedraw = new Audio("./Sounds/Drawgame.mp3");
let GameWinner = new Audio("./Sounds/Winner.mp3");
let turn1 = new Audio("./Sounds/move1.mp3");
let turn2 = new Audio("./Sounds/move2.mp3");

let turn0 = true;
let turn = "X";
Expand Down Expand Up @@ -123,4 +123,4 @@ const CheckWinner = () => {
};
//Game is Reset when we Click the Reset button or New Game button
btn.addEventListener("click",resetgame);
btn1.addEventListener("click",resetgame);
btn1.addEventListener("click",resetgame);

0 comments on commit e67a8b5

Please sign in to comment.