diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2021-06-24 23:11:39 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2021-06-24 23:11:39 +0200 |
| commit | 976ed2b105e80b257ebb724b3061400f37460041 (patch) | |
| tree | bd04ac5d0a7978d6d8a4a5e2d862bf574314f2f8 /client/src/gameState.ts | |
| parent | 3906fcf3d702f13da79c797c91a2dd32d874af49 (diff) | |
mega commit
Diffstat (limited to 'client/src/gameState.ts')
| -rw-r--r-- | client/src/gameState.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client/src/gameState.ts b/client/src/gameState.ts index 2d5ec3e..b276136 100644 --- a/client/src/gameState.ts +++ b/client/src/gameState.ts @@ -16,4 +16,12 @@ interface Player { interface Pit { index: number; nrOfStones: number; + state: PitState; + setPitState: (newPitState: PitState) => void; } + + +interface PitState { + stoneElements: JSX.Element[] | undefined; + } + |
