Make the log object readonly

This commit is contained in:
Oliver Akins 2022-03-07 23:40:01 -06:00
parent eab458bb6b
commit 3dfb8b877f
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -10,7 +10,7 @@ export class Game {
readonly id: string;
readonly host: Player;
private log: Logger;
readonly log: Logger;
private _deck: Deck<FuelCard>;
private board: (Player|null)[];