| 88 | } |
| 89 | |
| 90 | bool ChessBoard::isDead(int id) |
| 91 | { |
| 92 | if(id == -1) |
| 93 | return true; |
| 94 | |
| 95 | return m_ChessPieces[id].m_bDead; |
| 96 | } |
| 97 | |
| 98 | int ChessBoard::getStoneId(int row, int col) |
| 99 | { |
nothing calls this directly
no outgoing calls
no test coverage detected