0
0
Fork 0

Adapt the Team object to work with the two hands

This commit is contained in:
Oliver-Akins 2021-02-28 19:35:14 -07:00
parent 1a54b301d1
commit 39304d739b
2 changed files with 9 additions and 2 deletions

4
server/src/types/team_hands.d.ts vendored Normal file
View file

@ -0,0 +1,4 @@
interface team_hands {
guesser: question_deck[];
writer: question_deck[];
}