Add the fuel card to the PlayerData
This commit is contained in:
parent
69aa91e632
commit
e4dfc8aa3f
1 changed files with 4 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
import { IColour } from "./Colour";
|
import { IColour } from "./Colour";
|
||||||
|
import { FuelCard } from "./FuelCard";
|
||||||
import { ISpaceship } from "./Spaceship";
|
import { ISpaceship } from "./Spaceship";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -23,4 +24,7 @@ export interface PlayerData {
|
||||||
|
|
||||||
/** The unique ID of the player */
|
/** The unique ID of the player */
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
|
/** The fuel that the player is going to be playing this turn */
|
||||||
|
fuel?: FuelCard
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue