Files
Werewolf/server/model/Game.js
2021-11-13 01:21:22 -05:00

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;