can put them back

This commit is contained in:
2025-08-03 22:16:19 -04:00
parent 5f05eb4adf
commit 0dc0a9ce62
7 changed files with 94 additions and 30 deletions

View File

@@ -55,3 +55,8 @@ export const shuffle = (cards: Card[]) => {
}
return cards;
};
export type GameState = {
deck: Pile;
hand: Hand;
};