mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
10 lines
321 B
JavaScript
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
|
|
}
|
|
}
|