feat : add square highlight on right click

This commit is contained in:
GuillaumeSD
2024-03-17 21:46:07 +01:00
parent 46198f2a47
commit 72826d03b2
3 changed files with 62 additions and 8 deletions

View File

@@ -10,6 +10,7 @@ export const currentPositionAtom = atom<CurrentPosition>({});
export const boardOrientationAtom = atom(true);
export const showBestMoveArrowAtom = atom(true);
export const showPlayerMoveIconAtom = atom(true);
export const clickedSquaresAtom = atom<string[]>([]);
export const engineDepthAtom = atom(16);
export const engineMultiPvAtom = atom(3);