diff --git a/common/src/index.ts b/common/src/index.ts index c211a31..25b9573 100644 --- a/common/src/index.ts +++ b/common/src/index.ts @@ -8,6 +8,7 @@ export * from "./types/Colour"; export * from "./types/Spaceship"; export * from "./types/PlayerData"; + export * from "./types/FuelCard"; // Server-Client Communications export * from "./types/ServerResponse"; diff --git a/common/src/types/FuelCard.ts b/common/src/types/FuelCard.ts new file mode 100644 index 0000000..dc1f116 --- /dev/null +++ b/common/src/types/FuelCard.ts @@ -0,0 +1,6 @@ +export interface FuelCard { + magnitude: number; + symbol: string; + name: string; + type: "movement" | "stationary"; +} \ No newline at end of file