| 858 | } |
| 859 | |
| 860 | bool ChessBoard::canMoveCHE(int moveId, int killId, int row, int col) |
| 861 | { |
| 862 | Q_UNUSED(killId); |
| 863 | int ret = getStoneCountAtLine(m_ChessPieces[moveId].m_nRow, m_ChessPieces[moveId].m_nCol, row, col); |
| 864 | if(ret == 0) |
| 865 | return true; |
| 866 | |
| 867 | return false; |
| 868 | } |
| 869 | |
| 870 | bool ChessBoard::canMovePAO(int moveId, int killId, int row, int col) |
| 871 | { |
nothing calls this directly
no outgoing calls
no test coverage detected