mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
class Game {
|
|
constructor(status, people, deck, hasTimer, timerParams=null) {
|
|
this.status = status;
|
|
this.people = people;
|
|
this.deck = deck;
|
|
this.hasTimer = hasTimer;
|
|
this.timerParams = timerParams;
|
|
}
|
|
}
|
|
|
|
module.exports = Game;
|