Allow writer to be null.
This commit is contained in:
parent
4ca10aadf2
commit
8812982747
1 changed files with 1 additions and 1 deletions
|
|
@ -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[];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue