Files
Werewolf/client/model/Game.js
2021-11-09 22:54:44 -05:00

8 lines
180 B
JavaScript

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