示例#1
0
void uncover(Minesweeper &game, int row, int col)
{
    game.setCovered(row, col, false);
}
示例#2
0
void mark(Minesweeper &game, int row, int col)
{
    game.setCovered(row, col, false);
    game.setMarked(row, col, true);
}