UNPKG

thaw-reversi-engine.ts

Version:

A Node.js Reversi (Othello) game engine with alpha-beta pruning and a heuristic, packaged for npm.

7 lines (6 loc) 198 B
export declare class TwoDimensionalVector { static readonly eightDirections: TwoDimensionalVector[]; readonly dx: number; readonly dy: number; constructor(dx: number, dy: number); }