0
0
Fork 0

Allow writer to be null.

This commit is contained in:
Oliver-Akins 2020-12-26 14:37:14 -07:00
parent 4ca10aadf2
commit 8812982747

View file

@ -2,7 +2,7 @@ import { Player } from "./Player";
export class Team { export class Team {
public guessers: Player[]; public guessers: Player[];
public writer: Player; public writer: Player | null;
private _hand: string[]; private _hand: string[];
private _questions: string[]; private _questions: string[];
private _answers: string[]; private _answers: string[];