Skip to content

Commit

Permalink
Merge branch 'main' of github.com:online-go/goban
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Jan 22, 2024
2 parents f5fcb8b + 522e30a commit ba51b6a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/GoEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export interface GoEngineConfig {
width?: number;
height?: number;
disable_analysis?: boolean;
handicap_rank_difference?: number;
handicap?: number;
komi?: number;
rules?: GoEngineRules;
Expand Down Expand Up @@ -307,6 +308,7 @@ export class GoEngine extends EventEmitter<Events> {
public board: Array<Array<JGOFNumericPlayerColor>>;
//public cur_review_move?: MoveTree;
public getState_callback?: () => any;
public handicap_rank_difference?: number;
public handicap: number = NaN;
public initial_state: GoEngineInitialState = { black: "", white: "" };
public komi: number = NaN;
Expand Down

0 comments on commit ba51b6a

Please sign in to comment.