0
0
Fork 0

Adapt the Team object to work with the two hands

This commit is contained in:
Oliver-Akins 2021-02-28 19:35:14 -07:00
parent 1a54b301d1
commit 39304d739b
2 changed files with 9 additions and 2 deletions

View file

@ -4,7 +4,7 @@ export class Team {
readonly id: team; readonly id: team;
public guessers: Player[]; public guessers: Player[];
public writer: Player | null; public writer: Player | null;
private _hand: string[]; private _hand: team_hands;
private _questions: string[]; private _questions: string[];
private _answers: string[]; private _answers: string[];
@ -12,7 +12,10 @@ export class Team {
this.id = id; this.id = id;
this._answers = new Array<string>(8).fill(``); this._answers = new Array<string>(8).fill(``);
this._questions = []; this._questions = [];
this._hand = []; this._hand = {
guesser: [],
writer: []
};
this.guessers = []; this.guessers = [];
}; };

4
server/src/types/team_hands.d.ts vendored Normal file
View file

@ -0,0 +1,4 @@
interface team_hands {
guesser: question_deck[];
writer: question_deck[];
}