Example #1
0
 public bool HasResolved()
 {
     //check that every point of light is adjacent to at least one other
     return(Lights.All(x => Lights.Any(y => y.IsAdjacent(x))));
 }