diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-22 14:45:51 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2024-12-22 14:45:51 +0100 |
commit | fa18a313b5a57b106a8c41a542f08ba4697435ca (patch) | |
tree | 2146925d47aaf3107c8007bd513f4f99c4682c41 /types.d.ts | |
parent | b80ba3e739ed5dd1fa2796e3683bbe98659d865a (diff) | |
download | land-and-freedom-fa18a313b5a57b106a8c41a542f08ba4697435ca.tar.gz |
Add final bid and determine winner
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -32,6 +32,7 @@ export interface Game { current_events: CardId[]; discard: Record<FactionId | 'f', number[]>; engine: EngineNode[]; + final_bid: Record<FactionId, CardId[]>; fronts: { a: Front; m: Front; @@ -73,6 +74,7 @@ export interface View { bag_of_glory: Game['bag_of_glory']; bonuses: Game['bonuses']; current_events: CardId[]; + final_bid: CardId[]; fronts: Game['fronts']; glory: Game['glory']; hand: CardId[]; |