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