Files
Werewolf/client/model/Game.js
2021-11-17 23:19:54 -05:00

11 lines
354 B
JavaScript

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