diff --git a/common/src/index.ts b/common/src/index.ts index 3c91431..1e7f2d7 100644 --- a/common/src/index.ts +++ b/common/src/index.ts @@ -12,6 +12,7 @@ // Data Structures export * from "./types/Colour"; export * from "./types/FuelCard"; + export * from "./types/GameBoard"; export * from "./types/Spaceship"; export * from "./types/PlayerData"; export * from "./types/GameOption"; diff --git a/common/src/types/GameBoard.ts b/common/src/types/GameBoard.ts new file mode 100644 index 0000000..2ae5343 --- /dev/null +++ b/common/src/types/GameBoard.ts @@ -0,0 +1 @@ +export type Board = (string|null)[]; \ No newline at end of file