diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-19 23:11:44 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-19 23:11:44 +0100 |
commit | 7ed5936e81547858673806c9092ff0b370a9e656 (patch) | |
tree | 3f1d400dfcbb230425d7df3652f73f680b60272d /types.d.ts | |
parent | 1738326b21f02a1a4cd246b85026bc3f846511df (diff) | |
download | land-and-freedom-7ed5936e81547858673806c9092ff0b370a9e656.tar.gz |
Put pool after factions in medallions and hero_points lists.
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -54,15 +54,9 @@ export interface Game { fronts: Front[]; glory: FactionId[]; hands: CardId[][]; - hero_points: { - factions: number[]; - pool: number; - }; + hero_points: number[]; initiative: FactionId; - medallions: { - factions: number[][] - pool: Array<number | null> - }; + medallions: number[][]; played_card: CardId | null; player_order: Player[]; selected_cards: CardId[][]; |