From 054fa71b18788974aa60d93feccc4d0ae3cf0e67 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Wed, 5 Jan 2022 01:26:03 -0700 Subject: [PATCH] Add exports for the new types --- common/src/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/src/index.ts b/common/src/index.ts index cf6dcc6..42360fe 100644 --- a/common/src/index.ts +++ b/common/src/index.ts @@ -1,11 +1,13 @@ // Enums export { Status } from "./enums/Status"; -// Interfaces +// Data Structures export * from "./types/Colour"; export * from "./types/Spaceship"; +export * from "./types/PlayerData"; // Server-Client Communications export * from "./types/ServerResponse"; export * from "./types/events/SaveShip"; -export * from "./types/events/server_info"; \ No newline at end of file +export * from "./types/events/server_info"; +export * from "./types/events/game_create"; \ No newline at end of file