mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-07-12 22:21:15 -05:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
interface PlayerData {
|
|
playerIndex: number;
|
|
hand: Card[] | null;
|
|
deck: Deck | null;
|
|
cardsUsed: number[];
|
|
move: Move | null;
|
|
}
|