Add the fuel card to the PlayerData

This commit is contained in:
Oliver Akins 2022-07-30 17:43:49 -06:00
parent 69aa91e632
commit e4dfc8aa3f
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -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
}