diff --git a/server/src/objects/Team.ts b/server/src/objects/Team.ts index bf7cb21..668c820 100644 --- a/server/src/objects/Team.ts +++ b/server/src/objects/Team.ts @@ -36,6 +36,14 @@ export class Team { }; + public resetHand(): void { + /** + * Removes all the cards from the guesser's hand + */ + this._hand = []; + } + + public removeCard(question: string) { /** * Removes the given question from the medium's hand