Skip to content

Commit

Permalink
Pass along komi and prisoners with position analysis requests
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Sep 28, 2023
1 parent c1a4b32 commit 83fffe6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/protocol/ClientToAIServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ export interface ClientToAIServer extends ClientToServerBase {
/** Board position state */
board: number[][];

/** Number of captures black has */
black_prisoners: number;

/** Number of captures white has */
white_prisoners: number;

/** Komi */
komi: number;

/** Whose turn it is */
player: JGOFNumericPlayerColor;
}) => any;
Expand Down

0 comments on commit 83fffe6

Please sign in to comment.