Esempio n. 1
0
 private void CubeInitialization(RubikInfo[] copy)
 {
     for (int i = 0; i < CountElementsRubik; i++)
     {
         Cube[i] = new RubikInfo(copy[i]);
     }
 }
Esempio n. 2
0
 private void CubeInitialization()
 {
     for (int i = 0; i < CountElementsRubik; i++)
     {
         Cube[i] = new RubikInfo(GetColorByInt(i / 9), i);
     }
 }