Files
Werewolf/client/model/Game.js
2021-11-13 19:50:06 -05:00

10 lines
321 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
}
}