| 65 | } |
| 66 | |
| 67 | void ChessBoard:: reliveStone(int id) |
| 68 | { |
| 69 | if(id== -1) |
| 70 | return; |
| 71 | m_ChessPieces[id].m_bDead= false; |
| 72 | } |
| 73 | |
| 74 | void ChessBoard:: moveStone(int moveid, int row, int col) |
| 75 | { |
nothing calls this directly
no outgoing calls
no test coverage detected