playing and pausing the timer

This commit is contained in:
Alec
2021-11-30 02:50:00 -05:00
parent dfe6edeb96
commit 5c869182a2
12 changed files with 209 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
class Game {
constructor(accessCode, status, people, deck, hasTimer, moderator, timerParams=null) {
this.accessCode = accessCode
this.accessCode = accessCode;
this.status = status;
this.moderator = moderator;
this.people = people;
@@ -8,6 +8,7 @@ class Game {
this.hasTimer = hasTimer;
this.timerParams = timerParams;
this.isFull = false;
this.timeRemaining = null;
}
}