IPVGO: Add support for highlighting nodes and adding small text (#1996)

This commit is contained in:
Michael Ficocelli
2025-03-31 16:36:30 -04:00
committed by GitHub
parent 5d486e3914
commit f6e7ef082c
17 changed files with 251 additions and 28 deletions
+6
View File
@@ -55,6 +55,7 @@ export type BoardState = {
cheatCount: number;
cheatCountForWhite: number;
komiOverride: number | null;
highlightedPoints: (PointHighlight | null)[][];
};
export type PointState = {
@@ -109,3 +110,8 @@ export type SimpleOpponentStats = {
bonusPercent: number;
bonusDescription: string;
};
export type PointHighlight = {
color: string;
text: string;
};