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

9 lines
239 B
JavaScript

export class Game {
constructor(deck, hasTimer, moderatorName, timerParams=null) {
this.deck = deck;
this.hasTimer = hasTimer;
this.moderatorName = moderatorName;
this.timerParams = timerParams;
}
}