Move: {
    captured: ChessOfPeice | null;
    from: Point;
    to: Point;
}

一步合法走法(AI 搜索可直接使用)

Type declaration

  • captured: ChessOfPeice | null

    被吃掉的棋子(无吃子时为 null

  • from: Point

    起始坐标

  • to: Point

    目标坐标

Generated using TypeDoc