Example #1
0
 public bool RowCellsAreAttacked(int row, int column)
 {
     return(_queen.AttacksPosition(new Position {
         Row = row, Column = column
     }));
 }