From c284735e5e802f06061cd2abf7cf130323102b72 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 2 Oct 2020 16:50:31 -0600 Subject: [PATCH] Add needed import for Game object. --- src/events/HostGame.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/events/HostGame.ts b/src/events/HostGame.ts index 75fcf91..78d1193 100644 --- a/src/events/HostGame.ts +++ b/src/events/HostGame.ts @@ -13,6 +13,7 @@ that the host is able to just send that to the other players */ import * as db from '../utils/db'; import { Socket } from 'socket.io'; +import { Game } from '../utils/Game'; import { active_games, log } from '../main'; import { generate_game_code } from '../utils/gamecode';