Exemplo n.º 1
0
 public override bool CanSubtract(HexHint subhint)
 {
     return(true);
 }
Exemplo n.º 2
0
 public override void Subtract(HexHint subhint)
 {
     Cells   = Cells.Except(subhint.GetCells()).ToList().AsReadOnly();
     Number -= subhint.GetNumber();
 }
Exemplo n.º 3
0
 public override bool CanSubtract(HexHint subhint)
 {
     return(this.Type == HexRowHintType.NORMAL);
 }