private void ToggleBouncing(int index, Label labelToBounce) { if (bouncers[index] == null) { bouncers[index] = new LabelBouncer(); bouncers[index].MyLabel = labelToBounce; } else { bouncers[index] = null; } }
public void ToggleBouncers(int index, Label labelToBounce) { if (bouncers[index] == null) { bouncers[index] = new LabelBouncer(); bouncers[index].MyLabel = labelToBounce; } else { bouncers[index] = null; } }
private void ToggleBouncing(int index, Label labeltoBounce) { if (bouncers[index] == null) { bouncers[index] = new LabelBouncer(); bouncers[index].MyLabel = labeltoBounce; } else { bouncers[index] = null; } }