mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
8 lines
180 B
JavaScript
8 lines
180 B
JavaScript
export class Game {
|
|
constructor(deck, hasTimer, timerParams=null) {
|
|
this.deck = deck;
|
|
this.hasTimer = hasTimer;
|
|
this.timerParams = timerParams;
|
|
}
|
|
}
|