From e4dfc8aa3f49a3edacc52e872c2b07b54d5e1de8 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sat, 30 Jul 2022 17:43:49 -0600 Subject: [PATCH] Add the fuel card to the PlayerData --- common/src/types/PlayerData.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/src/types/PlayerData.ts b/common/src/types/PlayerData.ts index 9d803f6..1394c97 100644 --- a/common/src/types/PlayerData.ts +++ b/common/src/types/PlayerData.ts @@ -1,4 +1,5 @@ import { IColour } from "./Colour"; +import { FuelCard } from "./FuelCard"; import { ISpaceship } from "./Spaceship"; /** @@ -23,4 +24,7 @@ export interface PlayerData { /** The unique ID of the player */ id: string; + + /** The fuel that the player is going to be playing this turn */ + fuel?: FuelCard } \ No newline at end of file