From 2141e8bb21789789029c36d57a7795ae4f549e58 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 2 Oct 2020 16:51:54 -0600 Subject: [PATCH] Import the Game class because we need to --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index 6c6eed8..dd2f453 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,7 @@ import { Logger } from "tslog"; import * as sio from "socket.io"; import { writeFileSync } from "fs"; +import { Game } from "./utils/Game"; import { Vote } from "./events/Vote"; import { JoinGame } from "./events/JoinGame"; import { HostGame } from "./events/HostGame";