Update type for status.

This commit is contained in:
Oliver-Akins 2020-10-01 22:17:18 -06:00
parent b842d9f8bc
commit de3a8ea61e

View file

@ -1,6 +1,6 @@
class Game { class Game {
readonly code: string; readonly code: string;
public status: string; public status: game_states;
#players: players; #players: players;
public constructor(code: string, host: string) { public constructor(code: string, host: string) {