Exemplo n.º 1
0
 /// <summary>
 /// Determine if the cube is solved
 /// </summary>
 /// <returns>True if the cube is solved</returns>
 public bool issolved()
 {
     return(Up.Issolved() && Left.Issolved() &&
            Front.Issolved() && Right.Issolved() &&
            Back.Issolved() && Down.Issolved());
 }