From 477c65fbdd2ec712166f0f241bda5b4298e85ac1 Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Mon, 17 Nov 2025 12:01:30 +0100 Subject: [PATCH] fix state comment --- src/state.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state.ts b/src/state.ts index 6f27331..c73c039 100644 --- a/src/state.ts +++ b/src/state.ts @@ -10,7 +10,7 @@ export interface HeadlessState { orientation: cg.Color; // board orientation. white | black turnColor: cg.Color; // turn to play. white | black check?: cg.Key; // square currently in check "a2" - lastMove?: cg.Key[]; // squares part of the last move ["c3"; "c4"] + lastMove?: cg.Key[]; // squares part of the last move ["c3", "c4"] selected?: cg.Key; // square currently selected "a1" coordinates: boolean; // include coords attributes coordinatesOnSquares: boolean; // include coords attributes on every square