void RemovingElementsAnimation() { for (int i = 0; i < combinations.Count(); i++) { MyAnimation.OpacityAnimation( candies[Int32.Parse("" + combinations[i][1]), Int32.Parse("" + combinations[i][0])].img, true); } }
void CreateNewCandy(int row, int column) { candies[row, column].Change(rand); MyAnimation.OpacityAnimation(candies[row, column].img, false); }